#
# TABLE STRUCTURE FOR: sma_addresses
#

DROP TABLE IF EXISTS `sma_addresses`;

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

#
# TABLE STRUCTURE FOR: sma_adjustment_items
#

DROP TABLE IF EXISTS `sma_adjustment_items`;

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

#
# TABLE STRUCTURE FOR: sma_adjustments
#

DROP TABLE IF EXISTS `sma_adjustments`;

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

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

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

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

#
# TABLE STRUCTURE FOR: sma_attachments
#

DROP TABLE IF EXISTS `sma_attachments`;

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

#
# TABLE STRUCTURE FOR: sma_brands
#

DROP TABLE IF EXISTS `sma_brands`;

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

INSERT INTO `sma_brands` (`id`, `code`, `name`, `image`, `slug`, `description`) VALUES (2, 'Home Made', 'Home Made', NULL, 'home-made', 'Home Made');


#
# TABLE STRUCTURE FOR: sma_calendar
#

DROP TABLE IF EXISTS `sma_calendar`;

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

INSERT INTO `sma_calendar` (`id`, `title`, `description`, `start`, `end`, `color`, `user_id`) VALUES (1, 'Buy Beer', 'We need to buy beer', '2021-11-17 00:00:00', '2021-11-18 00:00:00', '#3a87ad', 1);


#
# 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 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
  `word` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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

INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('a55dcc4b1d3f49d710084b3ac5cfe640', '1651498074', 6, '{\"cart_total\":100,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"6bb421435e6539f9216a9c86f21c74bd\":{\"id\":\"120bf18bfa50b8c9e35c9bae4663ba71\",\"product_id\":\"9\",\"qty\":1,\"name\":\"Embroidery marking\",\"slug\":\"29094312\",\"code\":\"29094312\",\"price\":50,\"tax\":\"0.00\",\"image\":\"no_image.png\",\"option\":false,\"options\":null,\"rowid\":\"6bb421435e6539f9216a9c86f21c74bd\",\"row_tax\":\"0.0000\",\"subtotal\":\"50.0000\"},\"495fd19dd0f565d863fc91011fe5a5ed\":{\"id\":\"d342456abc32b5f8b1e9e3d24f8529b8\",\"product_id\":\"9\",\"qty\":1,\"name\":\"Embroidery marking\",\"slug\":\"29094312\",\"code\":\"29094312\",\"price\":50,\"tax\":\"0.00\",\"image\":\"no_image.png\",\"option\":false,\"options\":null,\"rowid\":\"495fd19dd0f565d863fc91011fe5a5ed\",\"row_tax\":\"0.0000\",\"subtotal\":\"50.0000\"}}');
INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('d306b66a2b724d1bbb325e29b7085f43', '1651492402', 6, '{\"cart_total\":1060,\"total_item_tax\":0,\"total_items\":2,\"total_unique_items\":2,\"c3afcb4a23c80546c5ac0800221b1f26\":{\"id\":\"8b76a7e76c9d0d880b644a919daf68b7\",\"product_id\":\"7\",\"qty\":1,\"name\":\"plain sweater size 30\",\"slug\":\"04566066\",\"code\":\"04566066\",\"price\":530,\"tax\":\"0.00\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"option\":false,\"options\":null,\"rowid\":\"c3afcb4a23c80546c5ac0800221b1f26\",\"row_tax\":\"0.0000\",\"subtotal\":\"530.0000\"},\"55fd4f1981e83d87baf1c5e68adcca10\":{\"id\":\"5b6c962832f5b918c8b5d0a2f9ea4c23\",\"product_id\":\"7\",\"qty\":1,\"name\":\"plain sweater size 30\",\"slug\":\"04566066\",\"code\":\"04566066\",\"price\":530,\"tax\":\"0.00\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"option\":false,\"options\":null,\"rowid\":\"55fd4f1981e83d87baf1c5e68adcca10\",\"row_tax\":\"0.0000\",\"subtotal\":\"530.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=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (33, 'Cb', 'Cabbage', NULL, 0, 'cabbage', 'Cabbage Seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (34, 'tm', 'tomato', NULL, 0, 'tomato', 'tomato seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (35, 'cp', 'capsicum', NULL, 0, 'capsicum', 'capsicum seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (36, 'pw', 'pawpaw', NULL, 0, 'pawpaw', 'pawpaw seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (37, 've', 'vegetables', NULL, 0, 'vegetables', 'leafy vegetables');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (38, 'ml', 'Melon', NULL, 0, 'melon', 'water melon seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (39, 'cc', 'cucumber', NULL, 0, 'cucumber', 'cucumber seedlings');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (40, 'Btt', 'butternut', NULL, 0, 'butternut', 'butternut seedings');


#
# TABLE STRUCTURE FOR: sma_combo_items
#

DROP TABLE IF EXISTS `sma_combo_items`;

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

#
# TABLE STRUCTURE FOR: sma_companies
#

DROP TABLE IF EXISTS `sma_companies`;

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

INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Thika', 'Thika', '46000', 'Malaysia', '0123456789', 'info@saganaplanters.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, 'Sagana', 'Sagana Plantraisers', '', 'Karatina', 'Nairobi', '', '', '', ' 0721536097', 'artpac.tech@gmail.com', '', '', '', '', '', '', ' Thank you for shopping with us. Please come again', 0, 'Logo51.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 (120, 3, 'customer', 1, 'General', 'Cyrus Muriithi', 'Cyrus Muriithi', '', 'Makutano', 'Kirinyaga', '', '', '', '0714272623', 'cyrus@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 (121, 3, 'customer', 1, 'General', 'Nyaga', 'Nyaga', '', 'kianyaga', 'Kirinyaga', '', '', '', '0723624266', 'nyaga@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', 'Benard Kinyua', 'Benard Kinyua', '', 'mukinduri', 'Kirinyaga', '', '', '', '0719763232', 'b@kiny.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Zablon Mwangi', 'Zablon Mwangi', '', 'Kangaru', 'Kirinyaga', '', '', '', '0720376145', 'zablon@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 (124, 3, 'customer', 1, 'General', 'Dan Muthii', 'Dan Muthii', '', 'Kimicha', 'Kirinyaga', '', '', '', '0710527448', 'dan@g.mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Esther Kinyua', 'Esther Kinyua', '', 'kiaga', 'Kirinyaga', '', '', '', '0722368296', 'e@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', 'Julias Githaka', 'Julias Githaka', '', 'Thumaita', 'Kirinyaga', '', '', '', '0713442104', 'jlg@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 (127, 3, 'customer', 1, 'General', 'Fredrick Chomba', 'Fredrick Chomba', '', 'kianjege', 'Kirinyaga', '', '', '', '0727569172', 'f.chomba@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', 'George Kamau', 'George Kamau', '', 'k', 'Kirinyaga', '', '', '', '072469395', 'gk@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 (129, 3, 'customer', 1, 'General', 'Josphat munene', 'Josphat munene', '', 'kirinyaga', 'Kirinyaga', '', '', '', '0707985397', 'jos@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 (130, 3, 'customer', 1, 'General', 'Martin Ndungu', 'Martin Ndungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725126841', 'mar@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nicolus kanyi', 'Nicolus kanyi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727898716', 'nic@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nancy wagathare', 'Nancy wagathare', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721286226', 'nan@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Patrick Kinyua', 'Patrick Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746071686', 'pat@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 (134, 3, 'customer', 1, 'General', 'Samson', 'Samson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0758357178', 'sam@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Ngugi', 'Ngugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722926299', 'Ngugi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon', 'Simon', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728642317', 'sim@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Jeremiah', 'Jeremiah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724767940', 'jer@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Eliud Chomba', 'Eliud Chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729894414', 'eli@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 (139, 3, 'customer', 1, 'General', 'Dennis Muthii', 'Dennis Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0792008335', 'den@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Peter karani', 'Peter karani', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728742353', 'pee@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Macharia', 'Macharia', '', 'Narumoro', 'Nyeri', '', '', '', '0722910119', 'ma@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Stanely Gitari', 'Stanely Gitari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726046799', 'st@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Josphat Njogu', 'Josphat Njogu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723702567', 'jos@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Stephen Kariuki/muthee', 'Stephen Kariuki/ muthee', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713274683', 'ste@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Muriuki', 'Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726791918', 'mur@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Pastor', 'Pastor', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722476449', 'pas@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon Irungu', 'Simon Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726121898', 'si@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nancy Murage', 'Nancy Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723617411', 'nac@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Murimi Agrovet', 'Murimi Agrovet', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721996847', 'muri@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 (150, 3, 'customer', 1, 'General', 'Thomas Murimi', 'Thomas Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726230305', 'th@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Maureen', 'Maureen', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701421414', 'mau@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Murimi Gitungu', 'Murimi Gitungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743231762', 'mu@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'David Muriithi', 'David Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713232988', 'dav@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John Warui', 'John Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798623025', 'jo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Stephen Mwaniki', 'Stephen Mwaniki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722753769', 'stp@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'peter mugo', 'peter mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0792644329', 'pt@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nester Muriuki', 'Nester Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724823473', 'Nes@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Harrison Murigu', 'Harrison Murigu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721460172', 'Har@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Stephen Muthike', 'Stephen Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0706287097', 'sm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'patrick muthike', 'patrick muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707929212', 'pat@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Benard murimi', 'Benard murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702744381', 'bn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John muchiri', 'John muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703179982', 'jh@g.mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John waweru', 'John waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715413725', 'jh@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'peter kiara', 'peter kiara', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0714227370', 'pr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Elias mwai', 'Elias mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798334080', 'eli@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'samson', 'samson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713603099', 'sa@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'peterson', 'peterson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725424090', 'ps@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'murimi maina', 'murimi maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726941130', 'mm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Andrew/wachira', 'Andrew/wachira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722600075/071020800', 'aw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Jacob mwangi', 'Jacob mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0741572954', 'jm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Antony Irungu', 'Antony Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716209234', 'an@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Steven Maina', 'Steven Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745283624', 'ste@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 (174, 3, 'customer', 1, 'General', 'Nancy nyaguthii', 'Nancy nyaguthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723787864', 'nay@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Salome Muthike', 'Salome Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720248551', 'sl@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 (176, 3, 'customer', 1, 'General', 'Joseph karani', 'Joseph karani', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716747134', 'jk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'peter kirimi', 'peter kirimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715685261', 'pk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Dennis mutugi', 'Dennis mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0791620277', 'dm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Peter Muriithi', 'Peter Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726316238', 'pm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Daniel shikuku', 'Daniel shikuku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728540141', 'ds@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Margret Wangari', 'Margret Wangari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712578024', 'mw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Peter maina', 'Peter maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724643455', 'pm@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 (183, 3, 'customer', 1, 'General', 'Eliud Miano', 'Eliud Miano', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718035557', 'elim@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 (184, 3, 'customer', 1, 'General', 'Benard irungu', 'Benard irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727290578', 'bi@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', 'David kinyua', 'David kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0714470650', 'dk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'James karimi', 'James karimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729175103', 'jk@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', 'christopher maina', 'christopher maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712287972', 'chri@mai.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'symon', 'symon', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710527524', 'sy@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'jamleck', 'jamleck', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720075822', 'jmc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Charles Muthii', 'Charles Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724262275', 'cm@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', 'Geoffrey Kinyua', 'Geoffrey Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725671197', 'gk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Joseph Muchoki', 'Joseph Muchoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729540658', 'jm@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 (193, 3, 'customer', 1, 'General', 'Agnes', 'Agnes', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710527448', 'ag@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Peter Mwangi', 'Peter Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720445969', 'pmw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Kanguku', 'Kanguku', '', 'Kirinyaga', 'Kirinyaga', 'Kanguku', '', '', '0716647617', 'kang@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'wilson boma', 'wilson boma', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721293051', 'wil@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Geoffrey munene', 'Geoffrey munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712400479', 'ge@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Samuel Kamau', 'Samuel Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725531780', 'sk@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 (199, 3, 'customer', 1, 'General', 'Moses  ndegwa', 'Moses  ndegwa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0113250831', 'Ms@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 (200, 3, 'customer', 1, 'General', 'Mutinda Robert', 'Mutinda robert', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726706762', 'mr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Willy', 'Willy', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0780742926', 'wi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Cyrus Muthii', 'Cyrus Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0112674003', 'cy@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Samson waweru', 'Samson waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724956504', 'sa@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 (204, 3, 'customer', 1, 'General', 'Benjamin haraka', 'Benjamin haraka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724618533', 'bh@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 (205, 3, 'customer', 1, 'General', 'Msome', 'Msome', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720445313', 'me@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Wachira', 'Wachira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713458706', 'wa@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Patrick munene', 'Patrick munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718430447', 'ptm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Benard muraguri', 'Benard muraguri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728261174', 'bm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'George kibicho', 'George kibicho', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715801417', 'gch@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Ibra', 'Ibra', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727821532', 'ib@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'edward kibicho', 'edward kibicho', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726687705', 'ed@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Ezekiel munguti', 'Ezekiel munguti', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723651094', 'ez@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Geofrey mwai', 'Geoffrey mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722535030', 'gm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Gichira', 'Gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726326649', 'gi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Patrick murithi', 'Patrick murithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0742673929', 'patt@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Johnmark', 'Johnmark', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725687927', 'jn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Consolata mbogo', 'Consolata mbogo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0757113592', 'cns@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 (218, 3, 'customer', 1, 'General', 'Joel', 'Joel', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725999838', 'jeo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Justus Kimandu', 'Justus Kimandu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725414781', 'ju@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'James Maina', 'James Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727394364', 'jam@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', 'Samuel Mwangi', 'Samuel Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705866081', 'Samu@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'murimi maina', 'murimi maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726941130', 'mm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Lydia Wairimu', 'Lydia Wairimu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723961183', 'ly@g.mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Mc maina', 'Mc maina', '', 'Kiangwaci', 'Kirinyaga', '', '', '', '0823499938', 'mc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon Murimi', 'Simon Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728642317', 'si@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Dancun Mwangi', 'Dancun Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716694364', 'dan@g.mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Benson warui', 'Benson warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718430447', 'ben@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Alex Njoroge', 'Alex Njoroge', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0741351332', 'al@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'David Ngigi (father)', 'David Ngigi (father)', '', 'Rimuruti', 'Rimuruti', '', '', '', '0702612476', 'dn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Samuel waweru', 'Samuel waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745268794', 'saw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Ann wambui', 'Ann wambui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729540446', 'am@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Jenifer wanjiku', 'Jenifer Wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700346916', 'jw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Mary mwaniki', 'Mary mwaniki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724308020', 'm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nahashon kamau', 'Nahashon kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711779974', 'na@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John muchiri', 'John muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703179982', 'jom@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Janet mithamo', 'Janet mithamo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713377050', 'ja@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Jenifer muriithi', 'Jenifer muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725340581', 'jaf@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'joe ngoroi', 'joe ngoroi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728808088', 'jel@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'joe ngoroi', 'joe ngoroi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728808088', 'jol@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Charles  Murimi', 'Charles  Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743266125', 'cha@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Gabriel Kariuki', 'Gabriel Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726061477', 'gb@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Alfred muriithi', 'Alfred muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0714744720', 'al@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 (243, 3, 'customer', 1, 'General', 'Governor', 'Governor', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0102807656', 'gv@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Florence', 'Florence', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720872908', 'flo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Alfred chomba', 'Alfred chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729142068', 'ac@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'David Karatu', 'David Karatu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705124247', 'dak@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Amos Kinyajui', 'Amos Kinyajui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725464759', 'aml@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Douglas Kinyua', 'Douglas Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0799298986', 'do@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John Mbaria', 'John Mbaria', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704471282', 'job@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Tarrus Ngugi', 'Tarrus Ngugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0791191805', 'tr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'daniel gichira', 'daniel gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705777486', 'dg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Reuben Muriithi', 'Reuben Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0793685480', 're@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Janifer Njeri', 'Janifer Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727673445', 'jn@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 (254, 3, 'customer', 1, 'General', 'Jackson mwangi', 'Jackson mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722682591', 'jack@maill.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Gladys Njiru', 'Gladys Njiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705499600', 'gl@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Samuel Gatebu', 'Samuel Gatebu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700109869', 'ga@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Samuel  Maringa', 'Samuel  Maringa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707682913', 'sma@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'George kariuki', 'George kariuki', '', 'Kiangwaci', 'Kirinyaga', '', '', '', '0796622647', 'geor@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Eliud Irungu', 'Eliud Irungu', '', 'Kiangwaci', 'Kirinyaga', '', '', '', '0714944798', 'eld@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Belton Nderi', 'Belton Nderi', '', 'Kiangwaci', 'Kirinyaga', '', '', '', '0746099989', 'bel@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Francis Mwai', 'Francis Mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723232630', 'fr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nicholas kinyua', 'Nicholas kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713230980', 'nich@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Leonard', 'Leonard', '', 'Namyuki', 'Nanyuki', '', '', '', '0721553361', 'leo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon Peter', 'Simon Peter', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '079222070', 'sp@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Mary Kimunyi', 'Mary Kimunyi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '074537410', 'mk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John Kamau', 'John Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700164362', 'jkm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Emmanuel  Mbiu', 'Emmanuel  Mbiu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713226857', 'em@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'milo musee', 'Milo  Musee', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722525980', 'mil@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Josphat Mwangi', 'Josphat Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707749467', 'jmw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Geoffrey', 'geofrey', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0732300404', 'geo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'James Muchiri', 'James Muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705099792', 'mu@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 (272, 3, 'customer', 1, 'General', 'Paul Wambugu', 'Paul Wambugu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722909465', 'pl@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'prisicila Ngina', 'prisicila Ngina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701505896', 'pr2@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Brian Karina', 'Brian Karina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746082406', 'br@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Peter Warui', 'Peter Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712351069', 'prt@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon muriuki', 'Simon muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728642317', 'sio@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Gaddafi', 'Gaddafi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720509711', 'gad@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Moses Kang\\\'ara', 'Moses Kang\\\'ara', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723173246', 'ka@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'John Warui', 'John Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721272202', 'joh@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Beatrice', 'Beatrice', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723364548', 'bea@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'James muthike', 'James Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748145809', 'jae@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Obadiah Njagi', 'Obadiah Njagi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727691498', 'oba@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Fredrick', 'Fredrick', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726077588', 'fre@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Raphael Maina', 'Raphael Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702619230', 'rap@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Kibunja', 'Kibunja', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0739109902', 'kib@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Nancy muthoni', 'Nancy muthoni', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720578986', 'nanc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Simon gachoki', 'Simon gachoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725355003', 'sg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Joseph mwangi', 'Joseph mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717821457', 'jose@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Harrison Muturi', 'Harrison Muturi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722924399', 'hari@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Fredrick Macharia', 'Fredrick Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711365486', 'fren@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Obadiah Kariuki', 'Obadiah Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722352580', 'oba@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 (292, 3, 'customer', 1, 'General', 'John Warui', 'John Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '071272202', 'jkw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Eliud  Waweru', 'Eliud  Waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0739170580', 'elid@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Simon', 'Simon', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724247635', 'simn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Moses Murimi', 'Moses Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723691179', 'mos@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 (298, 3, 'customer', 1, 'General', 'David gitari', 'David gitari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722628294', 'dadv@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Mercy Waithira', 'Mercy Waithira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722826628', 'merc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'cecelia Wangeci', 'cecelia Wangeci', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0794201961', 'cc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Polycarp Githaiga', 'Polycarp Githaiga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748403542', 'poly@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Paul  Kirusa', 'Paul  Kirusa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795309638', 'pl@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Peter Njuguna', 'Peter Njuguna', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768104051', 'ptt@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 (304, 3, 'customer', 1, 'General', 'Daniel Muthike', 'Daniel Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712601860', 'dani@g.mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Anne Nyaguthii', 'Anne Nyaguthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722242974', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Peter Muriuki', 'Peter Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0736152633', 'pmk@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 (307, 3, 'customer', 1, 'General', 'Kelvin Kariuki', 'Kelvin Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0115403360', 'kel@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Charles Gatimu', 'Charles Gatimu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768521050', 'chal@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 (309, 3, 'customer', 1, 'General', 'Peter Kiama', 'Peter Kiama', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720873857', 'pet@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'James Kibebe', 'James Kibebe', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '07211349965', 'jamk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Wacira Joel', 'Wacira Joel', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713151487', 'waj@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Faith Kagecha', 'Faith Kagecha', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '079710524', 'fai@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Otoigo Koroso', 'Otoigo Koroso', '', 'kuresoi', 'Narok', '', '', '', '0720643340', 'otoi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Wa  Edwin', 'Wa  Edwin', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704475190', 'edw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Joseph Mugo', 'Joseph Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729810294', 'jos@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 (316, 3, 'customer', 1, 'General', 'John Maina', 'John Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0788501551', 'johm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Simon Kariuki', 'Simon Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721115804', 'simo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Geoffrey Njagi', 'Geoffrey Njagi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0769285782', 'gef@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Stephen Macharia', 'Stephen Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722910119', 'stph@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Samuel Ndiga', 'Samuel Ndiga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721169601', 'same@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Jamleck Muthee', 'Jamleck Muthee', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727201067', 'e@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 (322, 3, 'customer', 1, 'General', 'Steve maina', 'Steve maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724831385', 'stev@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Amos Chomba', 'Amos Chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725814184', 'ams@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'David Mubari', 'David Mubari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729294828', 'davi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Pricilla Cianda', 'Pricilla Cianda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722760575', 'pri@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Humphrey Ngeruro', 'Humphrey Ngeruro', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721926194', 'hum@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'James Njagi', 'James Njagi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727311043', 'jame@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Mwaura', 'Mwaura', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727490458', 'mwau@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Antony Irungu', 'Antony Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727490458', 'anto@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Lilian Wanja Gathaka', 'Lilian Wanja Gathaka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729009089', 'lili@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Dan Gikunju', 'Dan Gikunju', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705777486', 'dang@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'John Njoka', 'John Njoka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717635583', 'njo@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'David Nguru', 'David Nguru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725075468', 'nguru@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Brian Nguru', 'Brian Nguru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0110558848', 'brian@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Antony Gatimu', 'Antony Gatimu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716240233', 'ang@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Michael Muriithi', 'Michael Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721396183', 'mic@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Nahashon waweru', 'Nahashon waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728982128', 'nah@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Charles mahiu', 'Charles mahiu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724884702', 'char@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Roseline Cherono', 'Roseline Cherono', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722409662', 'che@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Jane Njeri', 'Jane Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729474086', 'jan@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Joel  Kihohia', 'Joel  Kihohia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727083661', 'joe@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Patrick Murimi', 'Patrick Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717116661', 'patm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'David Mathu', 'David Mathu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0113900335', 'mat@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Joseph Mugo', 'Joseph Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711468437', 'josm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Hellen d.town', 'Hellen d.town', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721151179', 'helln@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Jane Mugo', 'Jane Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728147021', 'mug@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Stephen Kariuki', 'Stephen Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0793613855', 'stee@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 (349, 3, 'customer', 1, 'General', 'Jonathan Muchoki', 'Jonathan Muchoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702419684', 'jon@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Tirus Murage', 'Tirus Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728116621', 'ti@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 (351, 3, 'customer', 1, 'General', 'Jane Muriuki', 'Jane Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710171268', 'jmr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Henry Muiruri', 'Henry Muiruri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0757754946', 'hen@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Paul warui', 'Paul warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729565572', 'pw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Danson Mwangi', 'Danson Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726495883', 'dm@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 (355, 3, 'customer', 1, 'General', 'Faith Njeri', 'Faith Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708583186', 'fath@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'George Ngiri', 'George Ngiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722298275', 'grg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Joseph Gathanje', 'Joseph Gathanje', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727987221', 'jos@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 (358, 3, 'customer', 1, 'General', 'Moses Njoka', 'Moses Njoka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728366312', 'mn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Catherine Ndoro', 'Catherine Ndoro', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722869970', 'cate@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Haron Maina', 'Haron Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724038658', 'ha@mail.om', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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, 3, 'customer', 1, 'General', 'Mary Wambui Njoroge(alex Njoroge)', 'Mary Wambui Njoroge(alex Njoroge)', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722589133', 'ale@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `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', 'Kelvin  wanjiku', 'Kelvin  wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745610085', 'kev@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (364, 3, 'customer', 1, 'General', 'Samuel Muraguri', 'Samuel Muraguri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708516078', 'samm@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 (365, 3, 'customer', 1, 'General', 'Nahashon waweru', 'Nahashon waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728982128', 'na@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 (366, 3, 'customer', 1, 'General', 'David Njeru', 'David Njeru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722514138', 'dnj@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (367, 3, 'customer', 1, 'General', 'Ndirangu Francis', 'Ndirangu Francis', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721249756', 'ndi@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (368, 3, 'customer', 1, 'General', 'Francis Mwangi', 'Francis Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720384333', 'fra@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (369, 3, 'customer', 1, 'General', 'Stephen Murage', 'Stephen Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707461363', 'sph@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (370, 3, 'customer', 1, 'General', 'Geoffrey', 'Geoffrey', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721926669', 'gg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (371, 3, 'customer', 1, 'General', 'Lucas', 'Lucas', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715044122', 'lu@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 (372, 3, 'customer', 1, 'General', 'Muthomi', 'Muthomi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728739573', 'mut@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (373, 3, 'customer', 1, 'General', 'Fredrick Njigoya', 'Fredrick Njigoya', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716481835', 'nji@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (374, 3, 'customer', 1, 'General', 'Mama Njiiris', 'Mama Njiiris', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0734904119', 'mam@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (375, 3, 'customer', 1, 'General', 'Teressiah', 'Teressiah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727569172', 'ter@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (376, 3, 'customer', 1, 'General', 'Evans wamungunda', 'Evans wamungunda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712331156', 'wam@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (377, 3, 'customer', 1, 'General', 'Micah Nguu', 'Micah Nguu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729568639', 'mica@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (378, 3, 'customer', 1, 'General', 'Henry Gachoki', 'Henry Gachoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703535171', 'gac@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (379, 3, 'customer', 1, 'General', 'Charles  Muriithi', 'Charles  Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717670142', 'chm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (380, 3, 'customer', 1, 'General', 'Stanley Maina', 'Stanley Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722560967', 'sta@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (381, 3, 'customer', 1, 'General', 'Danson mwangi', 'Danson mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727937409', 'dans@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (382, 3, 'customer', 1, 'General', 'Joseph Mwangi', 'Joseph Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790076671', 'jos@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (383, 3, 'customer', 1, 'General', 'Jacob mwangi', 'Jacob mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0741572954', 'jac@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (384, 3, 'customer', 1, 'General', 'Simon Murigu', 'Simon Murigu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721683851', 'mui@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (385, 3, 'customer', 1, 'General', 'Geoffrey Mugweru', 'Geoffrey Mugweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0740106544', 'mug@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (386, 3, 'customer', 1, 'General', 'Joseph Macharia', 'Joseph Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727282679', 'mac@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (387, 3, 'customer', 1, 'General', 'Charity Karimi', 'Charity Karimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720230695', 'ckr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (388, 3, 'customer', 1, 'General', 'Grace Waithira', 'Grace Waithira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715914653', 'gra@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (389, 3, 'customer', 1, 'General', 'joseph  Mwangi', 'joseph  Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710527135', 'jmb@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (390, 3, 'customer', 1, 'General', 'Patrick Mwangi', 'Patrick Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723426865', 'pam@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (391, 3, 'customer', 1, 'General', 'Samson Waweru', 'Samson Waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724956504', 'smw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (392, 3, 'customer', 1, 'General', 'Cyrus Mugo', 'Cyrus Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0754969990', 'muc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (393, 3, 'customer', 1, 'General', 'Lucas Gatindi', 'Lucas Gatindi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715044122', 'lak@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (394, 3, 'customer', 1, 'General', 'Mwai', 'Mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725503135', 'mwai@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (395, 3, 'customer', 1, 'General', 'Geoffrey Murage', 'Geoffrey Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0740106544', 'mg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (396, 3, 'customer', 1, 'General', 'Charles Wamugunda', 'Charles Wamugunda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722910119', 'gu@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (397, 3, 'customer', 1, 'General', 'Samson Kariuki', 'Samson Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713603099', 'ss@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (398, 3, 'customer', 1, 'General', 'John Kabui', 'John Kabui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708692947', 'kab@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (399, 3, 'customer', 1, 'General', 'Paul Kamau', 'Paul Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721338602', 'pp@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (400, 3, 'customer', 1, 'General', 'Francis Kariuki', 'Francis Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720207639', 'fk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (401, 3, 'customer', 1, 'General', 'Teresiah', 'Teresiah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0735574496', 'sit@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (402, 3, 'customer', 1, 'General', 'Joel Muchiri', 'Joel Muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721921394', 'jj@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (403, 3, 'customer', 1, 'General', 'James Kirunji', 'James Kirunji', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726606970', 'kiru@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (404, 3, 'customer', 1, 'General', 'Timothy', 'Timothy', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715530739', 'tim@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (405, 3, 'customer', 1, 'General', 'Muthengi', 'Muthengi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721477312', 'muth@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (406, 3, 'customer', 1, 'General', 'Margret Wanjiru', 'Margret Wanjiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720248499', 'mmw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (407, 3, 'customer', 1, 'General', 'Isaac Irungu', 'Isaac Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723303276', 'is@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (408, 3, 'customer', 1, 'General', 'Francis Wanjohi', 'Francis Wanjohi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716557250', 'frw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (409, 3, 'customer', 1, 'General', 'Jamleck.', 'Jamleck.', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724582273', 'lc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (410, 3, 'customer', 1, 'General', 'Daniel Kamua', 'Daniel Kamua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729175103', 'dd@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (411, 3, 'customer', 1, 'General', 'Eliud Maina', 'Eliud Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720871875', 'lid@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (412, 3, 'customer', 1, 'General', 'Daniel  Maringa', 'Daniel  Maringa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712546788', 'dn@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 (413, 3, 'customer', 1, 'General', 'Harrison Murimi', 'Harrison Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711224567', 'harr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (414, 3, 'customer', 1, 'General', 'Pricilla', 'Pricilla', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789675678', 'pc@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (415, 3, 'customer', 1, 'General', 'Pauline wambui', 'Pauline wambui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724900615', 'pw@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 (416, 3, 'customer', 1, 'General', 'Wilson Maganjo', 'Wilson Maganjo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708581091', 'wg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (417, 3, 'customer', 1, 'General', 'Samuel Warui', 'Samuel Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720248499', 'ss@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 (418, 3, 'customer', 1, 'General', 'David Maringa', 'David Maringa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724318836', 'dv@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (419, 3, 'customer', 1, 'General', 'Rashid Kimotho', 'Rashid Kimotho', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723796749', 'ras@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (420, 3, 'customer', 1, 'General', 'Eric Mathenge', 'Eric Mathenge', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725859325', 'er@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (421, 3, 'customer', 1, 'General', 'Moses Waweru', 'Moses Waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0796675853', 'mm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (422, 3, 'customer', 1, 'General', 'Alex Munene Mwangi', 'Alex Munene Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746798470', 'alx@mai.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (423, 3, 'customer', 1, 'General', 'James Muchira', 'James Muchira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720986297', 'mmu@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (425, 3, 'customer', 1, 'General', 'John Kariuki', 'John Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720969193', 'jkr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (426, 3, 'customer', 1, 'General', 'Peter Kiragu', 'Peter Kiragu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724171927', 'kira@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (427, 3, 'customer', 1, 'General', 'Charles Macharia', 'Charles Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721895983', 'cma@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (428, 3, 'customer', 1, 'General', 'Stanly Mugo', 'Stanly Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724923809', 'mus@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (429, 3, 'customer', 1, 'General', 'Patrick Mwangi', 'Patrick Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723426865', 'kp@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (430, 3, 'customer', 1, 'General', 'nderitu police', 'nderitu police', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723030695', 'nder@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (431, 3, 'customer', 1, 'General', 'willy', 'willy', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723030695', 'wl@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (432, 3, 'customer', 1, 'General', 'Trinity', 'Trinity', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0791174047', 'tri@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (433, 3, 'customer', 1, 'General', 'Charles Kinyua', 'Charles Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789765400', 'cch@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (434, 3, 'customer', 1, 'General', 'Daniel Gikunju', 'Daniel Gikunju', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0788990076', 'nn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (435, 3, 'customer', 1, 'General', 'Albert Kairu', 'Albert Kairu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', 'kai@mail.com', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (436, 3, 'customer', 1, 'General', 'Janiffer muriithi', 'Janiffer muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725340581', 'jmk@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (437, 3, 'customer', 1, 'General', 'Kagio Sec', 'Kagio Sec', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720904010', 'se@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (438, 3, 'customer', 1, 'General', 'Rose Wanjiku', 'Rose Wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722303428', 'rw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (439, 3, 'customer', 1, 'General', 'Ken', 'Ken', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0762649420', 'ken@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (440, 3, 'customer', 1, 'General', 'Margret Wanjiku', 'Margret Wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0794236908', 'mw@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 (441, 3, 'customer', 1, 'General', 'Gabriel Muchiri', 'Gabriel Muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723489451', 'gm@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 (442, 3, 'customer', 1, 'General', 'Patrick Mundia', 'Patrick Mundia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708669597', 'pmt@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (443, 3, 'customer', 1, 'General', 'John Kithome', 'John Kithome', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725118574', 'jkt@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (444, 3, 'customer', 1, 'General', 'Peter Njogu', 'Peter Njogu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720688601', 'pmj@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (445, 3, 'customer', 1, 'General', 'Francis Murimi', 'Francis Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745679990', 'fnm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (446, 3, 'customer', 1, 'General', 'Leonard Cimba', 'Leonard Cimba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713090294', 'ln@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (447, 3, 'customer', 1, 'General', 'Simon Mwangi', 'Simon Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0740244133', 'smw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (448, 3, 'customer', 1, 'General', 'john irungu', 'john irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0112356786', 'ii@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (449, 3, 'customer', 1, 'General', 'Shadrack Mutugi', 'Shadrack Mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720078677', 'shad@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (450, 3, 'customer', 1, 'General', 'John Muthii', 'John Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0793653017', 'jmh@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (451, 3, 'customer', 1, 'General', 'Isaac Githaka', 'Isaac Githaka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729281879', 'isg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (452, 3, 'customer', 1, 'General', 'Gerald Ngari', 'Gerald Ngari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720638649', 'ngr@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (453, 3, 'customer', 1, 'General', 'Geoffery Wachira', 'Geoffery Wachira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713653781', 'gw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (454, 3, 'customer', 1, 'General', 'Martha wanjiku', 'Sagana Plantraisers', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789009890', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (455, 3, 'customer', 1, 'General', 'Jeremiah Kamau', 'Jeremiah Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720200796', 'jek@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (456, 3, 'customer', 1, 'General', 'Simon Mwangi', 'Simon Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711364818', 'siw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (457, 3, 'customer', 1, 'General', 'Margret Wairimu', 'Margret Wairimu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722866747', 'wai@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (458, 3, 'customer', 1, 'General', 'Ndege Njeru', 'Ndege Njeru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789923465', 'nje@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (459, 3, 'customer', 1, 'General', 'James Kariuki', 'James Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0706689709', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (460, 3, 'customer', 1, 'General', 'Zachary Ngugi', 'Zachary Ngugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798601972', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (461, 3, 'customer', 1, 'General', 'Isaac  Mungai', 'Isaac  Mungai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721419313', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (462, 3, 'customer', 1, 'General', 'Peter Gatimu', 'Peter Gatimu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717463540', 'pg@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (463, 3, 'customer', 1, 'General', 'Joseph Muthike', 'Joseph Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725350664', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (464, 3, 'customer', 1, 'General', 'Nzomo', 'Nzomo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724096244', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (465, 3, 'customer', 1, 'General', 'Mwaii', 'Mwaii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722895706', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (466, 3, 'customer', 1, 'General', 'Nicolus muthii', 'Nicolus muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725813663', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (467, 3, 'customer', 1, 'General', 'Lufas Ndaini', 'Lufas Ndaini', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722128480', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (468, 3, 'customer', 1, 'General', 'Elias Muriuki', 'Elias Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0110063754', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (469, 3, 'customer', 1, 'General', 'Patrick Kamau', 'Patrick Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715387949', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (470, 3, 'customer', 1, 'General', 'John Mutugi', 'John Mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710478155', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (471, 3, 'customer', 1, 'General', 'David Ngure', 'David Ngure', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724973783', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (472, 3, 'customer', 1, 'General', 'Artha', 'Artha', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720759304', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (473, 3, 'customer', 1, 'General', 'Hillary Munene', 'Hillary Munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0786455333', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (474, 3, 'customer', 1, 'General', 'Daniel  Ngari', 'Daniel  Ngari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729387275', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (475, 3, 'customer', 1, 'General', 'Alice Wambui', 'Alice Wambui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0112346760', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (476, 3, 'customer', 1, 'General', 'Rodgers Mwangi', 'Rodgers Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724637129', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (477, 3, 'customer', 1, 'General', 'George Wamwea', 'George Wamwea', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715188489', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (478, 3, 'customer', 1, 'General', 'Timothy  Mwangi', 'Timothy  Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '077742555', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (479, 3, 'customer', 1, 'General', 'Jackline', 'Jackline', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798619387', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (480, 3, 'customer', 1, 'General', 'Gladys Thuku', 'Gladys Thuku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721796033', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (481, 3, 'customer', 1, 'General', 'Arthur Miano', 'Arthur Miano', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720759304', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (482, 3, 'customer', 1, 'General', 'Peter maina', 'Peter maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713180384', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (483, 3, 'customer', 1, 'General', 'Reginah mumbi', 'Reginah mumbi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716829226', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (484, 3, 'customer', 1, 'General', 'Zawerio Muchiri', 'Zawerio Muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707419869', 'zaw@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (485, 3, 'customer', 1, 'General', 'Dishon Maina', 'Dishon Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729640300', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (486, 3, 'customer', 1, 'General', 'Muriithi', 'Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726119726', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (487, 3, 'customer', 1, 'General', 'Joseph Irungu', 'Joseph Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713466121', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (488, 3, 'customer', 1, 'General', 'Bernard Muraguri', 'Bernard Muraguri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728261174', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (489, 3, 'customer', 1, 'General', 'Joseph Gichira', 'Joseph Gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723489208', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (490, 3, 'customer', 1, 'General', 'Benjamin Wamwea', 'Benjamin Wamwea', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722852114', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (491, 3, 'customer', 1, 'General', 'Samuel Murage', 'Samuel Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707506852', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (492, 3, 'customer', 1, 'General', 'Antony Muriithi', 'Antony Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724326254', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (493, 3, 'customer', 1, 'General', 'Naphtali Waweru', 'Naphtali Waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0111443778', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (494, 3, 'customer', 1, 'General', 'Grace Kiama', 'Grace Kiama', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723906364', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (495, 3, 'customer', 1, 'General', 'Irene Kamau', 'Irene Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789067555', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (496, 3, 'customer', 1, 'General', 'Damaris', 'Damaris', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702598643', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (497, 3, 'customer', 1, 'General', 'George Mwangi', 'George Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725547688', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (498, 3, 'customer', 1, 'General', 'Gladys  Maina', 'Gladys  Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705324646', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (499, 3, 'customer', 1, 'General', 'Gilbert Muriithi', 'Gilbert Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723948398', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (500, 3, 'customer', 1, 'General', 'john  Njogu', 'john  Njogu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723393346', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (501, 3, 'customer', 1, 'General', 'Antony Karani', 'Antony Karani', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711839435', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (502, 3, 'customer', 1, 'General', 'Silas rungu', 'Silas Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715594687', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (503, 3, 'customer', 1, 'General', 'David Muriithi', 'David Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725482287', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (504, 3, 'customer', 1, 'General', 'Joseph Macharia', 'Joseph Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0714107771', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (505, 3, 'customer', 1, 'General', 'Francis Wamugunda', 'Francis Wamugunda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713801243', 'fm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (506, 3, 'customer', 1, 'General', 'Simon Githuka', 'Simon Githuka', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726595468', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (507, 3, 'customer', 1, 'General', 'Dennis Chomba', 'Dennis Chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0757003551', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (508, 3, 'customer', 1, 'General', 'muthoni munene', 'muthoni munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718267965', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (509, 3, 'customer', 1, 'General', 'Patrick Muriithi', 'Patrick Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724345254', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (510, 3, 'customer', 1, 'General', 'kariuki Munene', 'kariuki Munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726763492', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (511, 3, 'customer', 1, 'General', 'Peter kinyua', 'Peter kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0756434323', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (512, 3, 'customer', 1, 'General', 'Isaih murimi', 'Isaih murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721781052', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (513, 3, 'customer', 1, 'General', 'Simon Nyaga', 'Simon Nyaga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789675432', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (514, 3, 'customer', 1, 'General', 'Hellen Wanjiru', 'Hellen Wanjiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722486530', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (515, 3, 'customer', 1, 'General', 'Festus Mwangi', 'Festus Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708791485', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (516, 3, 'customer', 1, 'General', 'John weru', 'John weru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720909185', 'bn@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (517, 3, 'customer', 1, 'General', 'Antony Wanjau', 'Antony Wanjau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797602642', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (518, 3, 'customer', 1, 'General', 'Joseph Mutero', 'Joseph Mutero', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721230088', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (519, 3, 'customer', 1, 'General', 'John Mwangi', 'John Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719607482', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (520, 3, 'customer', 1, 'General', 'Antony Mueni', 'Antony Mueni', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723048345', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (521, 3, 'customer', 1, 'General', 'Jason kinyua', 'Jason kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748937084', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (522, 3, 'customer', 1, 'General', 'John Mwai', 'John Mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727015774', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (523, 3, 'customer', 1, 'General', 'Rachael njeri', 'Rachael njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0783445902', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (524, 3, 'customer', 1, 'General', 'Harrison Njeru', 'Harrison Njeru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721319046', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (525, 3, 'customer', 1, 'General', 'Antony Karuoya', 'Antony Karuoya', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723456787', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (526, 3, 'customer', 1, 'General', 'Samson Njeru', 'Samson Njeru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0706687290', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (527, 3, 'customer', 1, 'General', 'Samuel Mwangi', 'Samuel Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729987821', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (528, 3, 'customer', 1, 'General', 'Wilson Maina', 'Wilson Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0758712834', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (529, 3, 'customer', 1, 'General', 'Susan Njeri', 'Susan Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748047883', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (530, 3, 'customer', 1, 'General', 'Peter Mutugi', 'Peter Mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725338274', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (531, 3, 'customer', 1, 'General', 'Kelvin Muriuki', 'Kelvin Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705079445', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (532, 3, 'customer', 1, 'General', 'John Muthii', 'John Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718906394', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (533, 3, 'customer', 1, 'General', 'Grace Wanjiku', 'Grace Wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0792004148', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (534, 3, 'customer', 1, 'General', 'Edwin Karuri', 'Edwin Karuri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797712661', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (535, 3, 'customer', 1, 'General', 'Christopher Gachangi', 'Christopher Gachangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768314077', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (536, 3, 'customer', 1, 'General', 'Allan', 'Allan', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707441945', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (537, 3, 'customer', 1, 'General', 'James Gatogo', 'James Gatogo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729849406', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (538, 3, 'customer', 1, 'General', 'Moses Karanja', 'Moses Karanja', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719616054', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (539, 3, 'customer', 1, 'General', 'Francis', 'Francis', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795025998', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (540, 3, 'customer', 1, 'General', 'Daniel Karimi', 'Daniel Karimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708291087', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (541, 3, 'customer', 1, 'General', 'Timothy  Mwangi', 'Timothy  Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724797256', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (542, 3, 'customer', 1, 'General', 'Benson Mwangi', 'Benson Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0758306792', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (543, 3, 'customer', 1, 'General', 'Francis Kabitau', 'Francis Kabitau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745357071', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (544, 3, 'customer', 1, 'General', 'Biwot', 'Biwot', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '072863156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (545, 3, 'customer', 1, 'General', 'Benson Njuki', 'Benson Njuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721402059', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (546, 3, 'customer', 1, 'General', 'Isaih Nyamu', 'Isaih Nyamu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725288662', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (547, 3, 'customer', 1, 'General', 'Gibson Maina', 'Gibson Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720863104', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (548, 3, 'customer', 1, 'General', 'Yusuf Charles', 'Yusuf Charles', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729495048', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (549, 3, 'customer', 1, 'General', 'Eliud waweru', 'Eliud waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720580409', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (550, 3, 'customer', 1, 'General', 'Antony Murimi', 'Antony Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768555466', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (551, 3, 'customer', 1, 'General', 'Antony Murimi', 'Antony Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715426948', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (552, 3, 'customer', 1, 'General', 'Amos Wamugunda', 'Amos Wamugunda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715426948', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (553, 3, 'customer', 1, 'General', 'Mercy Nguru', 'Mercy Nguru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724724696', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (554, 3, 'customer', 1, 'General', 'Mary wawira', 'Mary wawira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720301464', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (555, 3, 'customer', 1, 'General', 'Ruth Wanjiru', 'Ruth Wanjiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727394675', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (556, 3, 'customer', 1, 'General', 'Fredrick Mwangi', 'Fredrick Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716481835', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (557, 3, 'customer', 1, 'General', 'Daniel Wamwea', 'Daniel Wamwea', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718720776', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (558, 3, 'customer', 1, 'General', 'Mwangi', 'Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0706119279', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (559, 3, 'customer', 1, 'General', 'Mwangi', 'Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0706119279', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (560, 3, 'customer', 1, 'General', 'David Mwangi', 'David Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715401511', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (561, 3, 'customer', 1, 'General', 'mama millicent', 'mama millicent', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790472746', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (562, 3, 'customer', 1, 'General', 'Peter Mwangi', 'Peter Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721363392', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (563, 3, 'customer', 1, 'General', 'Geoffrey wachira', 'Geoffrey wachira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716654061', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (564, 3, 'customer', 1, 'General', 'Patrick Mwangi', 'Patrick Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0735830153', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (565, 3, 'customer', 1, 'General', 'Kinyua Wamari', 'Kinyua Wamari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728654106', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (566, 3, 'customer', 1, 'General', 'Zablon Ndege', 'Zablon Ndege', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720099583', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (567, 3, 'customer', 1, 'General', 'Julius Kamau', 'Julius Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721578333', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (568, 3, 'customer', 1, 'General', 'Duncan Muchiri', 'Duncan Muchiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701287293', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (569, 3, 'customer', 1, 'General', 'Josiah kaburu', 'Josiah kaburu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701735252', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (570, 3, 'customer', 1, 'General', 'Amos Muriuki', 'Amos Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701804866', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (571, 3, 'customer', 1, 'General', 'Edwin Chomba', 'Edwin Chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721375760', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (572, 3, 'customer', 1, 'General', 'Samuel Murage', 'Samuel Murage', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712471936', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (573, 3, 'customer', 1, 'General', 'Joseph Njau', 'Joseph Njau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720581439', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (574, 3, 'customer', 1, 'General', 'Rose Nyambura', 'Rose Nyambura', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720233708', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (575, 3, 'customer', 1, 'General', 'Alphan Muthike', 'Alphan Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727607780', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (576, 3, 'customer', 1, 'General', 'Antony Muthee', 'Antony Muthee', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724464340', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (577, 3, 'customer', 1, 'General', 'John Manegene', 'John Manegene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723470000', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (578, 3, 'customer', 1, 'General', 'Daniel Wachira', 'Daniel Wachira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707419823', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (579, 3, 'customer', 1, 'General', 'Stephen Muchoki', 'Stephen Muchoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724934622', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (580, 3, 'customer', 1, 'General', 'James Maina', 'James Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722262490', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (581, 3, 'customer', 1, 'General', 'James Muthike', 'James Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725550664', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (582, 3, 'customer', 1, 'General', 'Eliud muriithi', 'Eliud muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725294423', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (583, 3, 'customer', 1, 'General', 'John Njogu', 'John Njogu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711839435', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (584, 3, 'customer', 1, 'General', 'simon muriithi', 'Simon muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795212221', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (585, 3, 'customer', 1, 'General', 'kimotho gicira', 'kimotho gicira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708154423', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (586, 3, 'customer', 1, 'General', 'Simon muriuki', 'Simon muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723914489', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (587, 3, 'customer', 1, 'General', 'kitusa', 'kitusa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798900188', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (588, 3, 'customer', 1, 'General', 'John', 'John', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717091317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (589, 3, 'customer', 1, 'General', 'Josphat Njoroge', 'Josphat Njoroge', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702667636', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (590, 3, 'customer', 1, 'General', 'Simon muthike', 'Simon muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0742026023', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (591, 3, 'customer', 1, 'General', 'Madam Njiru', 'Madam Njiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0714596060', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (592, 3, 'customer', 1, 'General', 'Simon nyaga', 'Simon nyaga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0784255399', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (593, 3, 'customer', 1, 'General', 'Elija Kiura', 'Elija Kiura', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720876714', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (594, 3, 'customer', 1, 'General', 'Robert Mwangi', 'Robert Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729365952', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (595, 3, 'customer', 1, 'General', 'Frank', 'Frank', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768699525', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (596, 3, 'customer', 1, 'General', 'John Munoru', 'John Munoru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700042841', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (597, 3, 'customer', 1, 'General', 'Jackson  Murimi', 'Jackson  Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719242566', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (598, 3, 'customer', 1, 'General', 'Dennis Mwai', 'Dennis Mwai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722688965', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (599, 3, 'customer', 1, 'General', 'Stanely Mwangi', 'Stanely', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726003626', 'e@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 (600, 3, 'customer', 1, 'General', 'Antony Karuga', 'Antony Karuga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721804092', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (601, 3, 'customer', 1, 'General', 'Jeremiah Kareithi', 'Jeremiah Kareithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725218015', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (602, 3, 'customer', 1, 'General', 'Michael Kibicho', 'Michael Kibicho', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708820626', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (603, 3, 'customer', 1, 'General', 'John Mwangi', 'John Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717091317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (604, 3, 'customer', 1, 'General', 'Eli Irungu', 'Eli Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0735383541', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (606, 3, 'customer', 1, 'General', 'David muchoki', 'David muchoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717714808', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (607, 3, 'customer', 1, 'General', 'Catherine Musonjo', 'Catherine Musonjo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707840419', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (608, 3, 'customer', 1, 'General', 'John Muriithi', 'John Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716068609', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (609, 3, 'customer', 1, 'General', 'Julius Irungu', 'Julius Irungu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725513970', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (610, 3, 'customer', 1, 'General', 'Peter Muturi', 'Peter Muturi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705533909', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (611, 3, 'customer', 1, 'General', 'Samson Ngayo', 'Samson Ngayo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727443974', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (612, 3, 'customer', 1, 'General', 'Joseph Ndege', 'Joseph Ndege', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725704091', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (613, 3, 'customer', 1, 'General', 'Joseph Simba', 'Joseph Simba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797934999', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (614, 3, 'customer', 1, 'General', 'Jeremiah Maina', 'Jeremiah Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724767940', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (615, 3, 'customer', 1, 'General', 'Robert Mwenda', 'Robert Mwenda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727302195', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (616, 3, 'customer', 1, 'General', 'Charles Maina', 'Charles Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721711382', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (617, 3, 'customer', 1, 'General', 'Dynamic', 'Dynamic', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703361827', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (618, 3, 'customer', 1, 'General', 'Patrick Murimi', 'patrick Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0742046081', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (619, 3, 'customer', 1, 'General', 'John Mutugi', 'John Mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710108227', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (620, 3, 'customer', 1, 'General', 'Brian', 'Brian', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0751148446', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (621, 3, 'customer', 1, 'General', 'John njaama', 'John njaama', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0715413768', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (622, 3, 'customer', 1, 'General', 'Nyaga', 'Nyaga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0784255399', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (623, 3, 'customer', 1, 'General', 'Mutuku', 'Mutuku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720675608', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (624, 3, 'customer', 1, 'General', 'Gabriel Muthigani', 'Gabriel Muthigani', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0106955958', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (625, 3, 'customer', 1, 'General', 'James  Njau', 'James  Njau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745559335', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (626, 3, 'customer', 1, 'General', 'Jane gathumbi', 'Jane Gathumbi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718353608', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (627, 3, 'customer', 1, 'General', 'patrick muthike', 'patrick muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746071686', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (628, 3, 'customer', 1, 'General', 'Isaac Gitau', 'Isaac Gitau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712551647', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (629, 3, 'customer', 1, 'General', 'Annrose Njoki', 'Annrose Njoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702012778', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (630, 3, 'customer', 1, 'General', 'Wambua', 'Wambua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712091159', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (631, 3, 'customer', 1, 'General', 'Lucy', 'Lucy', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721803878', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (632, 3, 'customer', 1, 'General', 'Nahashon', 'Nahashon', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723810362', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (633, 3, 'customer', 1, 'General', 'Robert Kariuki', 'Robert Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710170239', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (634, 3, 'customer', 1, 'General', 'Stephen maina', 'Stephen maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746283664', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (635, 3, 'customer', 1, 'General', 'Clement Kamau', 'Clement Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '07100130998', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (636, 3, 'customer', 1, 'General', 'Albert', 'Albert', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743231762', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (637, 3, 'customer', 1, 'General', 'John Kinyua cini', 'John Kinyua cini', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710667268', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (638, 3, 'customer', 1, 'General', 'Alex Maina', 'Alex Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795294755', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (639, 3, 'customer', 1, 'General', 'Simon Warui', 'Simon Warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725552536', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (640, 3, 'customer', 1, 'General', 'Teresia Njoki', 'Teresia Njoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721476939', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (641, 3, 'customer', 1, 'General', 'Gideon Kisini', 'Gideon Kisini', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707533675', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (642, 3, 'customer', 1, 'General', 'Purity Karigi', 'Purity Karigi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707625350', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (643, 3, 'customer', 1, 'General', 'Emma Mucora', 'Emma Mucora', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726466326', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (644, 3, 'customer', 1, 'General', 'Venasio wanjohi', 'Venasio wanjohi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797532151', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (645, 3, 'customer', 1, 'General', 'Mary Mungai', 'Mary Mungai', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721021432', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (646, 3, 'customer', 1, 'General', 'stephen macharia', 'Stephen Macharia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707423569', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (647, 3, 'customer', 1, 'General', 'willys muthii', 'willys muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704993537', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (648, 3, 'customer', 1, 'General', 'Mugo Njiiri', 'Mugo Njiiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722351377', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (649, 3, 'customer', 1, 'General', 'Ann Muthoni (david)', 'Ann Muthoni (david)', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722592955', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (650, 3, 'customer', 1, 'General', 'Henry Mwangi', 'Henry Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722859379', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (651, 3, 'customer', 1, 'General', 'Ann Njeri', 'Ann Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727236078', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (652, 3, 'customer', 1, 'General', 'Livingstone Muriithi', 'Livingstone Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724149606', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (653, 3, 'customer', 1, 'General', 'Jackson Kiama', 'Jackson Kiama', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720732018', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (654, 3, 'customer', 1, 'General', 'Henry Migwi', 'Henry Migwi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797915420', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (655, 3, 'customer', 1, 'General', 'Kenneday Maina', 'Kenneday Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728179654', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (656, 3, 'customer', 1, 'General', 'Joseph muriithi', 'Joseph muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720589285', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (657, 3, 'customer', 1, 'General', 'Ephantus', 'Ephantus', '', 'Kiangwaci', 'Kirinyaga', '', '', '', '0728315290', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (658, 3, 'customer', 1, 'General', 'Lydiah', 'Lydiah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0794091074', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (659, 3, 'customer', 1, 'General', 'David mutugi', 'David mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720471284', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (660, 3, 'customer', 1, 'General', 'Joseph maina', 'Joseph maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720445305', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (661, 3, 'customer', 1, 'General', 'peterson Kinyua', 'peterson Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723745314', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (662, 3, 'customer', 1, 'General', 'Jane mahiu', 'Jane mahiu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724275554', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (663, 3, 'customer', 1, 'General', 'Anderson gachoki', 'Anderson gachoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728948368', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (664, 3, 'customer', 1, 'General', 'John Ngumbo', 'John Ngumbo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722485632', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (665, 3, 'customer', 1, 'General', 'Danson Muriithi', 'Danson Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0112367777', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (666, 3, 'customer', 1, 'General', 'patrick kareithi', 'patrick kareithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0735830153', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (667, 3, 'customer', 1, 'General', 'Robert Mwangi', 'Robert Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729365972', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (668, 3, 'customer', 1, 'General', 'Moses Waweru', 'Moses Waweru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748738409', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (669, 3, 'customer', 1, 'General', 'Antony Kabinga', 'Antony Kabinga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726131156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (670, 3, 'customer', 1, 'General', 'Cathrine', 'Cathrine', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723361737', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (671, 3, 'customer', 1, 'General', 'Isaac Kamau', 'Isaac Kamau', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716572930', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (672, 3, 'customer', 1, 'General', 'Jane Wanjiru', 'Jane Wanjiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723281896', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (673, 3, 'customer', 1, 'General', 'William Kiama', 'William Kiama', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716968102', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (674, 3, 'customer', 1, 'General', 'Benson Gichira', 'Benson Gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721402059', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (675, 3, 'customer', 1, 'General', 'Purity Wanjiku', 'Purity Wanjiku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712082683', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (676, 3, 'customer', 1, 'General', 'Julius Njiru', 'Julius Njiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0768403722', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (677, 3, 'customer', 1, 'General', 'Jane Waithira', 'Jane Waithira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725707537', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (678, 3, 'customer', 1, 'General', 'Anna Nyawira', 'Anna Nyawira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721808025', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (679, 3, 'customer', 1, 'General', 'Martin Muturi', 'Martin Muturi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726657283', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (680, 3, 'customer', 1, 'General', 'Alex  maina', 'Alex  maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795294758', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (681, 3, 'customer', 1, 'General', 'Albert murimi', 'Albert murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743231762', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (682, 3, 'customer', 1, 'General', 'John mutugi', 'John mutugi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727040834', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (683, 3, 'customer', 1, 'General', 'david muriithi', 'david muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798964977', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (684, 3, 'customer', 1, 'General', 'Joseph Muthike', 'Joseph Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725358664', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (685, 3, 'customer', 1, 'General', 'Grace Wangu', 'Grace Wangu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703138724', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (686, 3, 'customer', 1, 'General', 'James  gatugu', 'James  gatugu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743231762', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (687, 3, 'customer', 1, 'General', 'Francis Mugo', 'Francis Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0796105667', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (688, 3, 'customer', 1, 'General', 'Muthomi Karuku', 'Muthomi Karuku', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798671815', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (689, 3, 'customer', 1, 'General', 'Eliud Muthii', 'Eliud Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0798766715', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (690, 3, 'customer', 1, 'General', 'Muriuki simon', 'Muriuki simon', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728642317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (691, 3, 'customer', 1, 'General', 'Josphat wanjohi', 'Josphat wanjohi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720294787', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (692, 3, 'customer', 1, 'General', 'Gladys wambere', 'Gladys wambere', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721796033', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (693, 3, 'customer', 1, 'General', 'Eliud Muthii', 'Eliud Muthii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0797575333', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (694, 3, 'customer', 1, 'General', 'Patrick Nyamu', 'Patrick Nyamu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728076898', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (695, 3, 'customer', 1, 'General', 'joseph Mwangii', 'joseph Mwangii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710527135', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (696, 3, 'customer', 1, 'General', 'Nahashon Murimi', 'Nahashon Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726941130', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (697, 3, 'customer', 1, 'General', 'Peter Gichira', 'Peter Gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0796289537', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (698, 3, 'customer', 1, 'General', 'Antony Murimi', 'Antony Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720584482', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (699, 3, 'customer', 1, 'General', 'Cyrus Munene', 'Cyrus Munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729089956', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (700, 3, 'customer', 1, 'General', 'paul Murimi', 'paul Murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716564345', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (701, 3, 'customer', 1, 'General', 'Charity wanja', 'Charity wanja', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707531981', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (703, 3, 'customer', 1, 'General', 'Aron Maina', 'Aron Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724038658', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (704, 3, 'customer', 1, 'General', 'David Wanjohi', 'David Wanjohi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726318032', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (705, 3, 'customer', 1, 'General', 'Moses gitari', 'Moses gitari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720536183', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (706, 3, 'customer', 1, 'General', 'Patrick munene', 'Patrick munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0796551759', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (707, 3, 'customer', 1, 'General', 'Hellen Wangeci', 'Hellen Wangeci', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723637924', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (708, 3, 'customer', 1, 'General', 'Peter Njiru', 'Peter Njiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711440633', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (709, 3, 'customer', 1, 'General', 'Faith Karira', 'Faith Karira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717241324', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (710, 3, 'customer', 1, 'General', 'James', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717232527', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (711, 3, 'customer', 1, 'General', 'D.t', 'D.t', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711884741', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (712, 3, 'customer', 1, 'General', 'Peter Kanyuira', 'Peter Kanyuira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707064530', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (713, 3, 'customer', 1, 'General', 'Antony', 'Antony', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0742000625', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (714, 3, 'customer', 1, 'General', 'Benard Njiru', 'Benard Njiru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722855394', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (715, 3, 'customer', 1, 'General', 'Charles Maina', 'Charles Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721753827', 'ilcc@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 (716, 3, 'customer', 1, 'General', 'John Mwangi', 'John Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726387677', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (717, 3, 'customer', 1, 'General', 'Joseph Kamuhia', 'Joseph Kamuhia', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729734261', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (718, 3, 'customer', 1, 'General', 'Titus kipchirchir', 'Titus kipchirchir', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790419614', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (719, 3, 'customer', 1, 'General', 'Benjamin Komu', 'Benjamin Komu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724573939', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (720, 3, 'customer', 1, 'General', 'Mary Muthoni', 'Mary Muthoni', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701068638', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (721, 3, 'customer', 1, 'General', 'Emprahim Njoroge', 'Emprahim Njoroge', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720757211', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (722, 3, 'customer', 1, 'General', 'Bilha', 'Bilha', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704296470', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (723, 3, 'customer', 1, 'General', 'Mwangi', 'Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705411139', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (724, 3, 'customer', 1, 'General', 'benard Mwangi', 'benard Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725799955', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (725, 3, 'customer', 1, 'General', 'Julius Mbiti', 'Julius Mbiti', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720004625', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (726, 3, 'customer', 1, 'General', 'Bilha Karimi', 'Bilha Karimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728808088', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (727, 3, 'customer', 1, 'General', 'Lawrence murimi', 'Lawrence murimi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701339437', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (728, 3, 'customer', 1, 'General', 'Margret Njeri', 'Margret Njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724613826', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (729, 3, 'customer', 1, 'General', 'Grace Kibunja', 'Grace Kibunja', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720561811', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (730, 3, 'customer', 1, 'General', 'Evan Mugo', 'Evan Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0784262800', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (731, 3, 'customer', 1, 'General', 'Frackson Kariuki', 'Frackson Kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722322126', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (732, 3, 'customer', 1, 'General', 'Martin Kiara', 'Martin Kiara', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724627830', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (733, 3, 'customer', 1, 'General', 'benson warui', 'benson warui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0735748531', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (734, 3, 'customer', 1, 'General', 'Benson Mwangi', 'Benson Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710347520', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (735, 3, 'customer', 1, 'General', 'Charles Muriithi', 'Charles Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717670142', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (736, 3, 'customer', 1, 'General', 'John Ngunjiri', 'John Ngunjiri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0769339466', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (737, 3, 'customer', 1, 'General', 'Stanely Gitari', 'Stanely Gitari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726046794', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (738, 3, 'customer', 1, 'General', 'David Gichira', 'David Gichira', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719295149', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (739, 3, 'customer', 1, 'General', 'Samuel Chege', 'Samuel Chege', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722924491', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (740, 3, 'customer', 1, 'General', 'Peterson Wanjohi', 'Peterson Wanjohi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748764298', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (741, 3, 'customer', 1, 'General', 'Joseph Bundi', 'Joseph Bundi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724303578', 'info@saganaplanters.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (742, 3, 'customer', 1, 'General', 'joel', 'joel', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0785235392', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (743, 3, 'customer', 1, 'General', 'Mutinda kisini', 'Mutinda kisini', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729206454', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (744, 3, 'customer', 1, 'General', 'Willy kariuki', 'Willy kariuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712216321', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (745, 3, 'customer', 1, 'General', 'Kibuchi', 'Kibuchi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729569394', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (746, 3, 'customer', 1, 'General', 'Rose Chomba', 'Rose Chomba', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727571494', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (747, 3, 'customer', 1, 'General', 'Daniel Muriithi', 'Daniel Muriithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745858174', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (748, 3, 'customer', 1, 'General', 'Beatrice Wakini', 'Beatrice Wakini', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726215159', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (749, 3, 'customer', 1, 'General', 'Jeremiah Nyaga', 'Jeremiah Nyaga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721995132', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (750, 3, 'customer', 1, 'General', 'Mirriam Muthoni', 'Mirriam Muthoni', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723000654', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (751, 3, 'customer', 1, 'General', 'Wandeto', 'Wandeto', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724891773', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (752, 3, 'customer', 1, 'General', 'Reuben Mureithi', 'Reuben Mureithi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0793685480', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (753, 3, 'customer', 1, 'General', 'Symon Nyaga', 'Symon Nyaga', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723624266', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (754, 3, 'customer', 1, 'General', 'John Muriuki', 'John Muriuki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711322507', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (755, 3, 'customer', 1, 'General', 'Nixson Mugweru ukii', 'Nixson Mugweru ukii', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0114964774', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (756, 3, 'customer', 1, 'General', 'Isaack k Njeru', 'Isaack k Njeru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729281879', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (757, 3, 'customer', 1, 'General', 'Antony mwangi', 'Antony mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705411139', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (758, 3, 'customer', 1, 'General', 'Alice Kinyua', 'Alice Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725472627', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (759, 3, 'customer', 1, 'General', 'Samuel Maina', 'Samuel Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727359092', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (760, 3, 'customer', 1, 'General', 'Joseph Ngari', 'Joseph Ngari', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718542091', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (761, 3, 'customer', 1, 'General', 'Nelson Meta mahinda', 'Nelson Meta mahinda', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707194749', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (762, 3, 'customer', 1, 'General', 'James Kinyua', 'James Kinyua', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720614231', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (763, 3, 'customer', 1, 'General', 'Elijah muguro', 'Elijah muguro', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725768433', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (764, 3, 'customer', 1, 'General', 'John Warui', 'John Warui', '', 'Kirinyaga ', 'Kirinyaga', '', '', '', '0711485472', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (765, 3, 'customer', 1, 'General', 'Maina Ndegwa', 'Maina Ndegwa', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729385505', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (766, 3, 'customer', 1, 'General', 'peter Mugo', 'peter Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0718437192', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (767, 3, 'customer', 1, 'General', 'Charity Wambui', 'Charity Wambui', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721451153', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (768, 3, 'customer', 1, 'General', 'Dishon munene', 'Dishon munene', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790945309', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (769, 3, 'customer', 1, 'General', 'john Kiritu ndungi', 'john Kiritu ndungi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725722571', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (770, 3, 'customer', 1, 'General', 'Charles Gachoki', 'Charles Gachoki', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743266125', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (771, 3, 'customer', 1, 'General', 'Patrick Maina', 'Patrick Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720672862', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (772, 3, 'customer', 1, 'General', 'Charles karungaru', 'Charles karungaru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728325971', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (773, 3, 'customer', 1, 'General', 'Dynamic', 'dynamic', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703361827', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (774, 3, 'customer', 1, 'General', 'James', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717232527', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (775, 3, 'customer', 1, 'General', 'Helen wangechi', 'Helen', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723637924', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (776, 3, 'customer', 1, 'General', 'njeri', 'njeri', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711884741', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (777, 3, 'customer', 1, 'General', 'Wa Kibiro', 'Wa Kabiro', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717645266', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (778, 3, 'customer', 1, 'General', 'Laston Kariuki', 'Laston', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0795363128', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (779, 3, 'customer', 1, 'General', 'Kimotho', 'Kimotho', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721350516', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (780, 3, 'customer', 1, 'General', 'Catherine Wanjira', 'Catherine', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729824028', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (781, 3, 'customer', 1, 'General', 'Boniface Gitau', 'Boniface', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716052684', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (782, 3, 'customer', 1, 'General', 'David Ngari', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723480628', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (783, 3, 'customer', 1, 'General', 'Samuel Njagi', 'Samuel', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724545008', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (784, 3, 'customer', 1, 'General', 'Joram Ndambiri', 'Joram', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724852352', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (785, 3, 'customer', 1, 'General', 'Wambora', 'Wambora', '', 'Rimuruti', 'Rimuruti', '', '', '', '0703537157', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (786, 3, 'customer', 1, 'General', 'Margaret Nyaga', 'Margaret', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727449538', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (787, 3, 'customer', 1, 'General', 'Samuel Muthee', 'Samuel', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707062816', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (788, 3, 'customer', 1, 'General', 'Paul Murimi', 'Paul', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729097881', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (789, 3, 'customer', 1, 'General', 'George Kamau', 'George', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724693395', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (790, 3, 'customer', 1, 'General', 'Joseph Rathimbo', 'Joseph', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0717293511', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (791, 3, 'customer', 1, 'General', 'David Mutembei', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0757399687', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (792, 3, 'customer', 1, 'General', 'Roseline Muringo', 'Roseline', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722397257', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (793, 3, 'customer', 1, 'General', 'Eli', 'Eli', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724530761', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (794, 3, 'customer', 1, 'General', 'Humphrey Maina', 'Humphrey', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705948620', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (795, 3, 'customer', 1, 'General', 'Maina Kibuga', 'Maina', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720201950', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (796, 3, 'customer', 1, 'General', 'Pius Mwaniki', 'Pius', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721989360', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (797, 3, 'customer', 1, 'General', 'Joseph Kariuki', 'Joseph', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723644309', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (798, 3, 'customer', 1, 'General', 'Josephine Muriithi', 'Josephine', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0713817737', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (799, 3, 'customer', 1, 'General', 'Wilson Njogu', 'Wilson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726722382', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (800, 3, 'customer', 1, 'General', 'Aaron', 'Aaron', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710658407', 'mm@mail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (801, 3, 'customer', 1, 'General', 'Jamleck Gitari', 'Jamleck', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0112452677', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (802, 3, 'customer', 1, 'General', 'Boniface muthami', 'Boniface', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724271187', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (803, 3, 'customer', 1, 'General', 'Mwangi Chomba', 'Mwangi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722908074', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (804, 3, 'customer', 1, 'General', 'Alfred Munene', 'Alfred', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722457053', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (805, 3, 'customer', 1, 'General', 'Stephen Maina', 'Stephen', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746283624', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (806, 3, 'customer', 1, 'General', 'Fredrick Mwaniki', 'Fredrick', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711334916', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (807, 3, 'customer', 1, 'General', 'Eric Gitonga', 'Eric', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704812542', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (808, 3, 'customer', 1, 'General', 'Perminus Muchira', 'Perminus', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0733636235', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (809, 3, 'customer', 1, 'General', 'Michael', 'Michael', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790992864', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (810, 3, 'customer', 1, 'General', 'Paul Kang\\\'iri', 'Paul', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0701166663', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (811, 3, 'customer', 1, 'General', 'Jemario Macharia', 'Jemaro', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727568421', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (812, 3, 'customer', 1, 'General', 'Faith Mugo', 'Faith', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721772937', 'e@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 (813, 3, 'customer', 1, 'General', 'Zacchaeus Gachuru', 'Zacchaeus', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0711746476', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (814, 3, 'customer', 1, 'General', 'Geoffrey Kamau', 'Geoffrey', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0757139164', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (815, 3, 'customer', 1, 'General', 'James Njogu', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724967458', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (816, 3, 'customer', 1, 'General', 'Makori', 'Makori', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708057748', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (817, 3, 'customer', 1, 'General', 'Thuo', 'Thuo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722292303', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (818, 3, 'customer', 1, 'General', 'Elias Mureithi', 'Elias', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720440327', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (819, 3, 'customer', 1, 'General', 'James Mwangi', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708822747', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (820, 3, 'customer', 1, 'General', 'Mr. Ibrahim', 'Ibrahim', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721996609', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (821, 3, 'customer', 1, 'General', 'Jamleck Githinji', 'Jamleck', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719297411', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (822, 3, 'customer', 1, 'General', 'John Njoroge', 'John', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725945005', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (823, 3, 'customer', 1, 'General', 'Felix Chomba', 'Felix', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729373005', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (824, 3, 'customer', 1, 'General', 'Pius Kinyua', 'Pius', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728661265', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (825, 3, 'customer', 1, 'General', 'Kairu', 'Kairu', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720140928', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (826, 3, 'customer', 1, 'General', 'Mugo', 'Mugo', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0784761133', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (827, 3, 'customer', 1, 'General', 'Moses Kariuki', 'Moses', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700175231', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (828, 3, 'customer', 1, 'General', 'Stephen Theuri', 'Stephen', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722269966', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (829, 3, 'customer', 1, 'General', 'James Mwangi', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0724016345', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (830, 3, 'customer', 1, 'General', 'Weru', 'Weru', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0769199846', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (831, 3, 'customer', 1, 'General', 'Anthony Gitari', 'Anthony', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729625085', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (832, 3, 'customer', 1, 'General', 'Albert Mwangi', 'Albert', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727607453', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (833, 3, 'customer', 1, 'General', 'Michael Matiro', 'Michael', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725542945', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (834, 3, 'customer', 1, 'General', 'Benson Wanjohi', 'Benson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0745728977', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (835, 3, 'customer', 1, 'General', 'David Mwai', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710857606', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (836, 3, 'customer', 1, 'General', 'John Gichimu', 'John', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0722862330', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (837, 3, 'customer', 1, 'General', 'Eric Mwangi', 'Eric', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702163490', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (838, 3, 'customer', 1, 'General', 'Jane Njeri', 'Jane', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719459775', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (839, 3, 'customer', 1, 'General', 'Francis Maina', 'Francis', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743140534', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (840, 3, 'customer', 1, 'General', 'Julius Gathu', 'Julius', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0792159354', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (841, 3, 'customer', 1, 'General', 'Shalom Agrovet', 'Shalom', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729801513', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (842, 3, 'customer', 1, 'General', 'John Maina', 'John', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0785681202', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (843, 3, 'customer', 1, 'General', 'Patrick', 'Patrick', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0729675050', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (844, 3, 'customer', 1, 'General', 'Julius Mwaniki', 'Julius', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725731771', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (845, 3, 'customer', 1, 'General', 'Joseph Kariuki', 'Joseph', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725907096', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (846, 3, 'customer', 1, 'General', 'Ann wambui', 'Ann', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728201075', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (847, 3, 'customer', 1, 'General', 'David Riua', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0789777990', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (848, 3, 'customer', 1, 'General', 'Ndumbiri', 'Anthony', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '07079805451', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (849, 3, 'customer', 1, 'General', 'Rocky Murage', 'Rocky', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727783491', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (850, 3, 'customer', 1, 'General', 'Cubi Mwai', 'Cubi', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0703855101', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (851, 3, 'customer', 1, 'General', 'Grace Wambui', 'Grace', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0700351573', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (852, 3, 'customer', 1, 'General', 'Wanja Mark', 'Wanja', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0704326640', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (853, 3, 'customer', 1, 'General', 'Joseph Mariga', 'Joseph', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723414708', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (854, 3, 'customer', 1, 'General', 'David Muriuki', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0707598618', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (855, 3, 'customer', 1, 'General', 'Lazarus Mwangi', 'Lazarus', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723464202', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (856, 3, 'customer', 1, 'General', 'Hillary Mwangi', 'Hillary', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0746184318', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (857, 3, 'customer', 1, 'General', 'Alex Ngunjiri', 'Alex', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708623964', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (858, 3, 'customer', 1, 'General', 'William Kariuki', 'William', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0708318602', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (859, 3, 'customer', 1, 'General', 'Danson Wanjira', 'Danson', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0712487818', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (860, 3, 'customer', 1, 'General', 'MC. Maina', 'MC.', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723499938', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (861, 3, 'customer', 1, 'General', 'David Wamwea', 'David', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0721649771', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (862, 3, 'customer', 1, 'General', 'Muthike', 'Muthike', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0710820649', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (863, 3, 'customer', 1, 'General', 'Dancan Kang\\\'ara', 'Dancan', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0702699148', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (864, 3, 'customer', 1, 'General', 'Elijah', 'Elijah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725734568', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (865, 3, 'customer', 1, 'General', 'Christopher Muriithi', 'Christopher', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0748888769', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (866, 3, 'customer', 1, 'General', 'Leonard Muchiru', 'Leonard', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0743394141', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (867, 3, 'customer', 1, 'General', 'Munguti', 'Munguti', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0113863265', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (868, 3, 'customer', 1, 'General', 'Isaiah Muriuki', 'Isaiah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720393248', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (869, 3, 'customer', 1, 'General', 'Meshack Murimi', 'Meshack', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0794519940', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (870, 3, 'customer', 1, 'General', 'James Kariuki', 'James', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720383856', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (871, 3, 'customer', 1, 'General', 'Monicah Murage', 'Monicah', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0725055226', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (872, 3, 'customer', 1, 'General', 'Boniface muriithi', 'Boniface', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0705543748', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (873, 3, 'customer', 1, 'General', 'Paul Mwai', 'Paul', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0716054987', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (874, 3, 'customer', 1, 'General', 'Bodmas', 'Bodmas', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0719674083', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (875, 3, 'customer', 1, 'General', 'Robert Mutugi', 'Robert', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0728115370', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (876, 3, 'customer', 1, 'General', 'Duncan Kariuki', 'Duncan', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0790140183', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (877, 3, 'customer', 1, 'General', 'Morris Kang\\\'ara', 'Morris', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0727487863', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (878, 3, 'customer', 1, 'General', 'Anthony Muchira', 'Anthony', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0726472786', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (879, 3, 'customer', 1, 'General', 'Peter Maina', 'Peter', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0720632130', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (880, 3, 'customer', 1, 'General', 'Peter Ndama', 'Peter', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0723797674', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (881, 3, 'customer', 1, 'General', 'Francis Karangi', 'Francis', '', 'Kirinyaga', 'Kirinyaga', '', '', '', '0734942010', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (882, 4, 'supplier', NULL, NULL, 'Sagana Plantraisers', 'Sagana Plantraisers', '', 'Kiagwaci', 'Sagana', '', '', '', '0710841004', 'saganaplantraisers@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (883, 3, 'customer', 1, 'General', 'James Kimemia', 'eLivecode Solutions', '', 'Thika', 'Thika', '', '', '', '0723759494', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (884, 3, 'customer', 1, 'General', 'Laston Murimi', 'Laston Murimi', '', 'Kwa wa Rui', 'Sagana', '', '', '', '0795363128', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (885, 3, 'customer', 1, 'General', 'ansal', 'Sharon nyaguthii', '', 'kiaga', 'kagio', '', '', '', '0743802408', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (886, 3, 'customer', 1, 'General', 'sukuma', 'madrine wanjiku', '', 'kangaru', 'kagio', 'kenya', '', 'Kenya', '0724159350', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (887, 3, 'customer', 1, 'General', 'Royal', 'ANTHONY MURIITHI', '', 'kangai', 'kagio', 'kagio', '', 'Kenya', '0716619300', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (888, 3, 'customer', 1, 'General', 'Ansal', 'Zachaeus Gachuru', '', 'Kangai', 'kagio', '', '', 'Kenya', '0711746476', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (889, 3, 'customer', 1, 'General', 'Benson Mugweru', 'Sagana Plantraisers', '', 'Kirinyaga', 'Kerugoya', '', '', '', '0758306792', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (890, 3, 'customer', 1, 'General', 'ansal', 'Benson Mugweru', '', 'Kirinyaga', 'Kerugoya', '', '', '', '0758306792', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (891, 3, 'customer', 1, 'General', 'queen', 'Nicholas muriithi', '', 'kirinyaga', 'central', 'kenya', '', '', '0727064017', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (892, 3, 'customer', 1, 'General', 'ansal', 'priscillah wanjira', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728659118', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (893, 3, 'customer', 1, 'General', 'sagana', 'Geoffrey muriiithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0790856257', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (894, 3, 'customer', 1, 'General', 'mueni', 'Anthony Mbula', '', 'Riakanau', 'Mwea', 'kenya', '', '', '0762264059', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (895, 3, 'customer', 1, 'General', 'lucy', 'lucy njiraini', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0743415217', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (896, 3, 'customer', 1, 'General', 'samuel', 'samuel maringa', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727160496', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (897, 3, 'customer', 1, 'General', 'kangethe', 'james kangethe', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727639686', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (898, 3, 'customer', 1, 'General', 'Benson0784926', 'Benson muchiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0784929671', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (899, 3, 'customer', 1, 'General', 'Joseph', 'Joseph Kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723644309', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (900, 3, 'customer', 1, 'General', 'Gichira', 'Cyrus Gichira', '', 'kirinyaga', 'central', '', '', 'Kenya', '07286599118', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (901, 3, 'customer', 1, 'General', 'Benson', 'Benson', '', 'kirinyaga', 'central', '', '', 'Kenya', '0790185112', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (902, 3, 'customer', 1, 'General', 'muriuki', 'Amos Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725814184', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (903, 3, 'customer', 1, 'General', 'leonard', 'leonard', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713090294', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (904, 3, 'customer', 1, 'General', 'david', 'david mugo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0782034421', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (905, 3, 'customer', 1, 'General', 'patrick', 'patrick murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722493563', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (906, 3, 'customer', 1, 'General', 'muriuki', 'John muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723914489', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (907, 3, 'customer', 1, 'General', 'Ambrose', 'Ambrose Bundi', '', 'ngucwi', 'mwea', '', '', '', '0726220187', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (908, 3, 'customer', 1, 'General', 'Jane', 'Jane Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0756956728', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (909, 3, 'customer', 1, 'General', 'charles', 'Charles Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724836113', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (910, 3, 'customer', 1, 'General', 'Peter', 'Peter Chomba', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728137774', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (911, 3, 'customer', 1, 'General', 'Johnson', 'Johnson Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721332057', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (912, 3, 'customer', 1, 'General', 'david', 'David', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716875329', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (913, 3, 'customer', 1, 'General', 'boma', 'Wilson Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0734530303', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (914, 3, 'customer', 1, 'General', 'Richard', 'Richard Migwi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721165983', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (915, 3, 'customer', 1, 'General', 'John', 'Ebenezzar', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721933285', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (916, 3, 'customer', 1, 'General', 'Benjamin', 'Benjamin  Koomu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724573939', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (917, 3, 'customer', 1, 'General', 'Peterson', 'Peterson Mwai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728290546', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (918, 3, 'customer', 1, 'General', 'Miringu', 'Miringu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721268280', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (919, 3, 'customer', 1, 'General', 'samson', 'samson  cucumber', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713603099', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (920, 3, 'customer', 1, 'General', 'Michael', 'Michael', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712603400', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (921, 3, 'customer', 1, 'General', 'Douglas', 'Douglas Kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0799298986', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (922, 3, 'customer', 1, 'General', 'Paul', 'Paul Murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729097881', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (923, 3, 'customer', 1, 'General', 'Nahashon', 'Nahashon Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728982128', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (924, 3, 'customer', 1, 'General', 'Jacob Kathenya', 'Nzomo', '', 'Riakanau', 'Mwea', '', '', 'Kenya', '0724096244', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (925, 3, 'customer', 1, 'General', 'Gichnagi', 'Ephantus Gichangi', '', 'thingini', 'mwea', '', '', '', '0724720689', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (926, 3, 'customer', 1, 'General', 'Phyllis', 'Phyllis Kimotho', '', 'kirinyaga', 'central', '', '', 'Kenya', '0715561351', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (927, 3, 'customer', 1, 'General', 'Simon', 'Simon Kabinda', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726019527', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (928, 3, 'customer', 1, 'General', 'Stephen', 'Stephen Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769249399', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (929, 3, 'customer', 1, 'General', 'Nancy', 'Nancy Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0113730329', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (930, 3, 'customer', 1, 'General', 'Maina', 'Jeremiah Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724767940', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (931, 3, 'customer', 1, 'General', 'David', 'David Mutembei', '', 'kirinyaga', 'central', '', '', 'Kenya', '0757399687', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (932, 3, 'customer', 1, 'General', 'Benjamin', 'Benjamin Haraka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0734687085', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (933, 3, 'customer', 1, 'General', 'Peter', 'Peter Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728118860', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (934, 3, 'customer', 1, 'General', 'joseph', 'JOSEPH kasioni', '', 'kasioni', 'mwea', '', '', '', '0710527135', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (935, 3, 'customer', 1, 'General', 'geoffrey', 'geoffrey gitari', '', 'kirinyaga', 'central', '', '', 'Kenya', '0746018401', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (936, 3, 'customer', 1, 'General', 'samuel', 'samuel wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728317211', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (937, 3, 'customer', 1, 'General', 'john mark', 'john mark', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725687927', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (938, 3, 'customer', 1, 'General', 'geoffrey', 'geoffrey murage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0740106544', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (939, 3, 'customer', 1, 'General', 'dennis wachira', 'dennis wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0791566904', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (940, 3, 'customer', 1, 'General', 'david riua', 'david riua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0789777990', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (941, 3, 'customer', 1, 'General', 'benson warui', 'benson warui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0718430447', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (942, 3, 'customer', 1, 'General', 'george', 'george ngatia', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722502886', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (943, 3, 'customer', 1, 'General', 'peterson', 'peterson kiama', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720061301', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (944, 3, 'customer', 1, 'General', 'peter karani', 'peter karani', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728742353', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (945, 3, 'customer', 1, 'General', 'John muriithi', 'John muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720909186', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (946, 3, 'customer', 1, 'General', 'dennis kiangwaci', 'dennis', '', 'kirinyaga', 'central', '', '', 'Kenya', '0706805789', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (947, 3, 'customer', 1, 'General', 'james', 'james miano', '', 'kirinyaga', 'central', '', '', 'Kenya', '0792639373', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (948, 3, 'customer', 1, 'General', 'james githaiga', 'james githaiga', '', 'kirinyaga', 'central', '', '', 'Kenya', '0714418114', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (949, 3, 'customer', 1, 'General', 'david', 'david karatu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705124247', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (950, 3, 'customer', 1, 'General', 'colluins gachoki', 'collins gachoki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0794287166', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (951, 3, 'customer', 1, 'General', 'judy muthoni', 'judy muthoni(margaret gathaiga)', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726450785', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (952, 3, 'customer', 1, 'General', 'wachira', 'wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720795240', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (953, 3, 'customer', 1, 'General', 'josphat karimi', 'josphat karimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0785616507', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (954, 3, 'customer', 1, 'General', 'besnon', 'besnon mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710347520', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (955, 3, 'customer', 1, 'General', 'kanyotu', 'erick muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723883933', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (956, 3, 'customer', 1, 'General', 'njanja', 'martin njanja', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720795240', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (957, 3, 'customer', 1, 'General', 'miano', 'james miano', '', 'kirinyaga', 'central', '', '', 'Kenya', '0792639373', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (958, 3, 'customer', 1, 'General', 'joseph muchoki', 'joseph muchoki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729540658', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (959, 3, 'customer', 1, 'General', 'stephen', 'stephen kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722260657', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (960, 3, 'customer', 1, 'General', 'njiri', 'stephen njiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722351377', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (961, 3, 'customer', 1, 'General', 'david nguku', 'david nguku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722368994', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (962, 3, 'customer', 1, 'General', 'queen', 'martin', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726173502', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (963, 3, 'customer', 1, 'General', 'johnson mwai', 'johnson mwai', '', 'kirinyaga', 'central', '', '', 'Kenya', '07209993702', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (964, 3, 'customer', 1, 'General', 'harrison wambugu', 'harrison wambugu', '', 'karie', 'kirinyaga', '', '', '', '0703415018', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (965, 3, 'customer', 1, 'General', 'cyrus wambyui', 'cyrus wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726913026', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (966, 3, 'customer', 1, 'General', 'wanjiru', 'felista wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0791419875', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (967, 3, 'customer', 1, 'General', 'kinyua', 'kinyua murigu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0756424553', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (968, 3, 'customer', 1, 'General', 'stephen wamwea', 'stephen wamwea', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703490670', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (969, 3, 'customer', 1, 'General', 'peter', 'peter  njuguna', '', 'kirinyaga', 'central', '', '', 'Kenya', '0768104051', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (970, 3, 'customer', 1, 'General', 'reuben mwenda', 'reuben mwenda', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721152870', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (971, 3, 'customer', 1, 'General', 'duncan', 'Duncan munyi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724967417', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (972, 3, 'customer', 1, 'General', 'joseph murimi', 'joseph murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0797178848', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (973, 3, 'customer', 1, 'General', 'murimi', 'murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722273080', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (974, 3, 'customer', 1, 'General', 'peter muranga', 'peter', '', 'muranga', 'muranga', '', '', '', '0755203116', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (975, 3, 'customer', 1, 'General', 'kariimi', 'francis karimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727140021', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (976, 3, 'customer', 1, 'General', 'muthomi  maringa', 'muthomi maringa', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728739573', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (977, 3, 'customer', 1, 'General', 'john mwai', 'John mwai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722862330', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (978, 3, 'customer', 1, 'General', 'edward munene', 'edward munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0708581373', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (979, 3, 'customer', 1, 'General', 'david mubari', 'david mubari', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729294828', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (980, 3, 'customer', 1, 'General', 'edwin wakini', 'edwin wakini', '', 'kirinyaga', 'central', '', '', 'Kenya', '0702171395', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (981, 3, 'customer', 1, 'General', 'Isaac Mugweru', 'issac mugweru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0708980496', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (982, 3, 'customer', 1, 'General', 'peter kamunde', 'peter kamu20nde', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720263468', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (983, 3, 'customer', 1, 'General', 'patrick muchiri', 'patrick muchiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0105192438', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (984, 3, 'customer', 1, 'General', 'Lazarus muthike', 'lazarus muthike', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724451812', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (985, 3, 'customer', 1, 'General', 'mrs kariuki', 'mrs kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722684194', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (986, 3, 'customer', 1, 'General', 'boniface kamau', 'boniface kamau', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720816960', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (987, 3, 'customer', 1, 'General', 'brayoh', 'brian', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717534677', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (988, 3, 'customer', 1, 'General', 'josphat maina', 'josphat maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729385505', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (989, 3, 'customer', 1, 'General', 'eric wachira', 'eric wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0708596970', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (990, 3, 'customer', 1, 'General', 'kimotho phyllis', 'phyllis kimotho', '', 'kirinyaga', 'central', '', '', 'Kenya', '07155661351', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (991, 3, 'customer', 1, 'General', 'samuel muthii', 'samuel muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727091246', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (992, 3, 'customer', 1, 'General', 'gitwe michael', 'michael gitwe', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727993806', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (993, 3, 'customer', 1, 'General', 'mbuitu', 'catherine mbuitu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729824028', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (994, 3, 'customer', 1, 'General', 'roseline', 'Roseline NYaki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0735290832', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (995, 3, 'customer', 1, 'General', 'luke miano', 'luke miano', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769216421', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (996, 3, 'customer', 1, 'General', 'kariuki james', 'James kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728628143', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (997, 3, 'customer', 1, 'General', 'macharia', 'macharia', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713009662', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (998, 3, 'customer', 1, 'General', 'paulo', 'paul', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723845201', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (999, 3, 'customer', 1, 'General', 'wanjohi christopher', 'christopher wanjohi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724623530', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1000, 3, 'customer', 1, 'General', 'peter', 'peter', '', 'kirinyaga', 'central', '', '', 'Kenya', '0795898979', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1001, 3, 'customer', 1, 'General', 'kinyua mary', 'mary kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729355327', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1002, 3, 'customer', 1, 'General', 'munene eric', 'eric munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724558711', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1003, 3, 'customer', 1, 'General', 'mwangi lazarus', 'lazarus mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723464202', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1004, 3, 'customer', 1, 'General', 'milton wachira', 'milton wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723472246', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1005, 3, 'customer', 1, 'General', 'mucebio john', 'john mucebio', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727478480', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1006, 3, 'customer', 1, 'General', 'kariuki edward', 'edward kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0715127317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1007, 3, 'customer', 1, 'General', 'githaka james', 'james githaka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716728830', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1008, 3, 'customer', 1, 'General', 'farmers corridor', 'beth', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723406797', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1009, 3, 'customer', 1, 'General', 'mwangi david', 'david mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0742285328', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1010, 3, 'customer', 1, 'General', 'njiri', 'stephen njiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722351377', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1011, 3, 'customer', 1, 'General', 'gichobi', 'peterson gichobi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0768934734', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1012, 3, 'customer', 1, 'General', 'geoffrey muthiii', 'Geoffrey muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726597341', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1013, 3, 'customer', 1, 'General', 'muthii leonard', 'leonard muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724515869', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1014, 3, 'customer', 1, 'General', 'karimi lewis', 'lewis karimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0706663186', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1015, 3, 'customer', 1, 'General', 'naftaly muriuki', 'naftaly muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722103605', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1016, 3, 'customer', 1, 'General', 'johnstone kiratu', 'johnstone kiratu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729175147', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1017, 3, 'customer', 1, 'General', 'christopher muriithi', 'christopher muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0748888769', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1018, 3, 'customer', 1, 'General', 'sarah muriithi', 'sarah muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0714201981', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1019, 3, 'customer', 1, 'General', 'waithaka james', 'james waithaka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717123993', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1020, 3, 'customer', 1, 'General', 'Munyua Gerald', 'Gera;ld Munyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713505341', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1021, 3, 'customer', 1, 'General', 'mwangi', 'Erastus Mburu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712006223', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1022, 3, 'customer', 1, 'General', 'Justus Murimi', 'justus murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711217135', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1023, 3, 'customer', 1, 'General', 'Kimani Joseph', 'Joseph  kimani', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726765824', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1024, 3, 'customer', 1, 'General', 'alllan', 'Allan Ngongo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0113759939', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1025, 3, 'customer', 1, 'General', 'patrick musangi njeru', 'Patrick Njeru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0715920675', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1026, 3, 'customer', 1, 'General', 'john ndunge', 'John Ndunge', '', 'Riakanau', 'Mwea', '', '', 'Kenya', '0722321702', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1027, 3, 'customer', 1, 'General', 'simon', 'simon mumbu', '', 'mumbu', 'ngariama', '', '', '', '0728642317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1028, 3, 'customer', 1, 'General', 'wambui hannah', 'hannah wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0700772023', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1029, 3, 'customer', 1, 'General', 'Justus ikanya', 'justus ikanya', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725414781', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1030, 3, 'customer', 1, 'General', 'henry', 'henry', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713410887', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1031, 3, 'customer', 1, 'General', 'wambui virginiah', 'Virginiah wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729295571', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1032, 3, 'customer', 1, 'General', 'mirriam wanjira', 'MIrriam Wanjira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0701636702', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1033, 3, 'customer', 1, 'General', 'francis njeru', 'Francis njeru', '', 'kirinyaga', 'central', '', '', 'Kenya', '07789003105', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1034, 3, 'customer', 1, 'General', 'naftaly', 'naftlaly maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0701039960', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1035, 3, 'customer', 1, 'General', 'isaiah muriuki', 'isaiah muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0700093413', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1036, 3, 'customer', 1, 'General', 'milton wachira', 'milton wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723472246', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1037, 3, 'customer', 1, 'General', 'paul githaka', 'paul githaka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723845201', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1038, 3, 'customer', 1, 'General', 'stephen', 'stephen kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722260657', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1039, 3, 'customer', 1, 'General', 'wanjira catherine', 'catherine wanjira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704356071', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1040, 3, 'customer', 1, 'General', 'mwai Benard', 'Benard Mwai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725503135', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1041, 3, 'customer', 1, 'General', 'Francis Kamau', 'francis kamau', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769115483', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1042, 3, 'customer', 1, 'General', 'anthony ndege', 'Anthony Ndege', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725119869', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1043, 3, 'customer', 1, 'General', 'Anthony Githaka', 'Anthony Githaka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728670371', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1044, 3, 'customer', 1, 'General', 'Daniel Karimi', 'Daniel Karimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0708291087', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1045, 3, 'customer', 1, 'General', 'Samuel Muriuki', 'Samuel Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725531780', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1046, 3, 'customer', 1, 'General', 'patrick waweru', 'Patrick Waweru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721535009', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1047, 3, 'customer', 1, 'General', 'Joseph Ndama', 'Joseph ndama', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729987539', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1048, 3, 'customer', 1, 'General', 'Monicah Nyanguthii', 'Monicah Nyanguthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0799687358', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1049, 3, 'customer', 1, 'General', 'Muchiri Crucial', 'Muchiri Crucial', '', 'Rumuruti', 'kieni', '', '', '', '0722175688', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1050, 3, 'customer', 1, 'General', 'geoffrey mwai muchiri', 'Geoffrey Muchiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723269821', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1051, 3, 'customer', 1, 'General', 'Boniface Murage', 'Boniface Murage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0740106544', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1052, 3, 'customer', 1, 'General', 'lewis macharia', 'Lewis macharia wanjohi', '', 'kirinyaga', 'central', '', '', 'Kenya', '07117004389', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1053, 3, 'customer', 1, 'General', 'Jamleck munene', 'Jamleck munene', 'J', 'kirinyaga', 'central', '', '', 'Kenya', '0720075822', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1054, 3, 'customer', 1, 'General', 'IBRA', 'Ibra', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727821532', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1055, 3, 'customer', 1, 'General', 'nyawira virginiah', 'virginiah Nyawira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724412790', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1056, 3, 'customer', 1, 'General', 'Benard maina', 'Benard maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721249865', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1057, 3, 'customer', 1, 'General', 'samuel', 'Samuel cabbage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0799598749', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1058, 3, 'customer', 1, 'General', 'harrison njiru', 'Harrison Njiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716546101', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1059, 3, 'customer', 1, 'General', 'Jane wanjiku', 'Jane Wanjiku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724295582', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1060, 3, 'customer', 1, 'General', 'Ndambiri Ngoroi', 'Ndambiri Ngoroi', '', 'kirinyaga', 'central', '', '', 'Kenya', '071168551', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1061, 3, 'customer', 1, 'General', 'Daniel Njiraini', 'Daniel Njiraini', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725933171', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1062, 3, 'customer', 1, 'General', 'Joseph Muriuki', 'Joseph Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722230670', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1063, 3, 'customer', 1, 'General', 'Eliud', 'Eliud', '', 'kirinyaga', 'central', '', '', 'Kenya', '0702579790', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1064, 3, 'customer', 1, 'General', 'Samuel Gichohi', 'Samuel Gichohi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0742775328', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1065, 3, 'customer', 1, 'General', 'Josiah kagai', 'Josiah kagai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0707873316', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1066, 3, 'customer', 1, 'General', 'Paul Thika', 'Paul Thika', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724502782', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1067, 3, 'customer', 1, 'General', 'John Githu', 'John Githu', '', 'kirinyaga', 'central', '', '', 'Kenya', '07711175167', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1068, 3, 'customer', 1, 'General', 'John Mutugi', 'John Mutugi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720873857', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1069, 3, 'customer', 1, 'General', 'Peter muthigani', 'peter Muthingani', '', 'kirinyaga', 'central', '', '', 'Kenya', '07720873857', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1070, 3, 'customer', 1, 'General', 'Peter Mwangi', 'Peter Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723092179', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1071, 3, 'customer', 1, 'General', 'Benson Maina', 'Benson Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0795858623', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1072, 3, 'customer', 1, 'General', 'peter muriithi', 'peter muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726316238', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1073, 3, 'customer', 1, 'General', 'David Maai', 'David Maai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0754290900', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1074, 3, 'customer', 1, 'General', 'Joseph Kibui', 'Joseph Kibui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0746872416', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1075, 3, 'customer', 1, 'General', 'mutiso donald', 'Donald  Mutiso', '', 'Riakanau', 'Mwea', '', '', 'Kenya', '0722715124', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1076, 3, 'customer', 1, 'General', '0717116661', 'patrick muriiiiimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717116661', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1077, 3, 'customer', 1, 'General', 'Rosemary Mwangi', 'Rosemary Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713466721', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1078, 3, 'customer', 1, 'General', 'Thomas Muriithi', 'Thomas Muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723092106', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1079, 3, 'customer', 1, 'General', 'Francis Kihara', 'Francis  Kihara', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722667328', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1080, 3, 'customer', 1, 'General', '0738804403', 'amos kangai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0738804403', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1081, 3, 'customer', 1, 'General', 'Daniel Nderitu', 'Daniel Nderitu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724654208', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1082, 3, 'customer', 1, 'General', 'kelvin wangai', 'Kelvin wangai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0798146255', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1083, 3, 'customer', 1, 'General', 'martin kiragu', 'martin kiragu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722920386', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1084, 3, 'customer', 1, 'General', 'samuel kamau', 'samuel kamau', '', 'kirinyaga', 'central', '', '', 'Kenya', '0112592206', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1085, 3, 'customer', 1, 'General', 'John Njoka', 'John Njoka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720728305', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1086, 3, 'customer', 1, 'General', '0704555201', 'john murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704555201', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1087, 3, 'customer', 1, 'General', 'damaris njeri', 'damaris njeri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721797834', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1088, 3, 'customer', 1, 'General', 'John muriuki', 'John Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0757695012', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1089, 3, 'customer', 1, 'General', 'wambui virginiah', 'Virginiah wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729295571', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1090, 3, 'customer', 1, 'General', 'patrick muchiiiri', 'patrick muchiiiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728972566', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1091, 3, 'customer', 1, 'General', 'james dedan', 'james dedan', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710529200', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1092, 3, 'customer', 1, 'General', 'pirity kinyua', 'purity kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721250769', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1093, 3, 'customer', 1, 'General', 'samuel gichuhi', 'samuel gichuhi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721421503', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1094, 3, 'customer', 1, 'General', 'besnon mwangi', 'BENSON mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710347520', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1095, 3, 'customer', 1, 'General', 'gerishon wambui', 'Gerishon wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720497189', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1096, 3, 'customer', 1, 'General', 'patrick kariuki', 'patrick kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725825874', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1097, 3, 'customer', 1, 'General', 'john mwangi', 'John Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0719607482', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1098, 3, 'customer', 1, 'General', 'joseph mwangi', 'Joseph mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724066509', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1099, 3, 'customer', 1, 'General', 'John Mboi', 'John Mboi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0100734229', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1100, 3, 'customer', 1, 'General', 'peter wamae', 'peter wamae', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725264283', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1101, 3, 'customer', 1, 'General', 'charles  gatimu', 'Charles Gatimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '07685211050', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1102, 3, 'customer', 1, 'General', 'charles macharia', 'charles macharia', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721895983', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1103, 3, 'customer', 1, 'General', 'munene', 'munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0750174326', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1104, 3, 'customer', 1, 'General', 'jackson maina', 'Jackson maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0738510885', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1105, 3, 'customer', 1, 'General', 'kelvin kinyua', 'kelvin kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716755792', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1106, 3, 'customer', 1, 'General', 'patrick munene', 'patrick munene', '', 'Riakanau', 'Mwea', '', '', 'Kenya', '0729675050', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1107, 3, 'customer', 1, 'General', 'elijah gitari', 'elijah gitari', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722398230', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1108, 3, 'customer', 1, 'General', 'peter mwendwa', 'peter mwendwa', '', 'kirinyaga', 'central', '', '', 'Kenya', '0790122611', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1109, 3, 'customer', 1, 'General', 'patrick muthike', 'Patrick muthike', '', 'kirinyaga', 'central', '', '', 'Kenya', '0746071686 ', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1110, 3, 'customer', 1, 'General', 'Michael Thumaita', 'michael Thumaita', '', 'kirinyaga', 'central', '', '', 'Kenya', '0790992864', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1111, 3, 'customer', 1, 'General', 'Kamanja', 'kamanja', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722889631', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1112, 3, 'customer', 1, 'General', 'Millicent Njoka', 'Millicent Njoka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726068871', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1113, 3, 'customer', 1, 'General', 'Edwin karani', 'Edwin karani', '', 'kirinyaga', 'central', '', '', 'Kenya', '0786161494', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1114, 3, 'customer', 1, 'General', 'danson wachira', 'Danson wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712487818', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1115, 3, 'customer', 1, 'General', 'anthony matere', 'anthony matere', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720977320', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1116, 3, 'customer', 1, 'General', 'Joseph Muriithi', 'Joseph Muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729899526', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1117, 3, 'customer', 1, 'General', 'peter kibuci', 'peter kibuci', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728440549', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1118, 3, 'customer', 1, 'General', 'Jukius Kinyua', 'Julius Kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713616610', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1119, 3, 'customer', 1, 'General', 'Florence  Wanjiru', 'Florence Wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711614969', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1120, 3, 'customer', 1, 'General', 'Joseph Maina', 'Joseph Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720445305', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1121, 3, 'customer', 1, 'General', 'maina kariuki stephen', 'Stephen Kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722260657', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1122, 3, 'customer', 1, 'General', 'Christopher Manegene', 'Christopher Manegene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720333167', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1123, 3, 'customer', 1, 'General', 'David Mbirui', 'David Mbirui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726494391', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1124, 3, 'customer', 1, 'General', 'Julius Mureithi', 'Julius Mureithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0740106563', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1125, 3, 'customer', 1, 'General', 'Nixson Ukii', 'Nixson Ukii', '0', 'kirinyaga', 'central', '', '', 'Kenya', '01008555383', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1126, 3, 'customer', 1, 'General', 'murimi', 'murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722273080', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1127, 3, 'customer', 1, 'General', 'Nahashon Waithanji', 'Nahashon Waithaji', 'n', 'kirinyaga', 'central', '', '', 'Kenya', '0726308650', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1128, 3, 'customer', 1, 'General', 'jane catherine', 'Jane  Catherine', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728147021', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1129, 3, 'customer', 1, 'General', 'queen', 'Julius Kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725671512', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1130, 3, 'customer', 1, 'General', 'Glady Wanjiru', 'Gladys  Wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0115292945', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1131, 3, 'customer', 1, 'General', 'Elias Wachira', 'Elias wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722556591', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1132, 3, 'customer', 1, 'General', 'Joel Kihohia', 'Joel kIhohia', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727082661', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1133, 3, 'customer', 1, 'General', 'John Kinyua', 'John KInyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717140725', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1134, 3, 'customer', 1, 'General', 'felix muriithi', 'felix muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0797652336', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1135, 3, 'customer', 1, 'General', 'Mbogo Muriithi', 'Mbogo Muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0783572575', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1136, 3, 'customer', 1, 'General', 'Lucy  Maina', 'Lucy  Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720848130', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1137, 3, 'customer', 1, 'General', 'samuel mararo', 'samuel mararo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704464984', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1138, 3, 'customer', 1, 'General', 'Regina Wanjiru', 'Regina Wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0700683144', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1139, 3, 'customer', 1, 'General', 'grace nyambura', 'Grace nyambura', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704749074', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1140, 3, 'customer', 1, 'General', 'mohammed', 'Mohammehd', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722604545', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1141, 3, 'customer', 1, 'General', 'John muthii', 'John Muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0783653017', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1142, 3, 'customer', 1, 'General', 'Alfred Chomba', 'Alfred Chomba', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729142068', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1143, 3, 'customer', 1, 'General', 'JULIUS kimotho', 'Julius Kimotho', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717917241', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1144, 3, 'customer', 1, 'General', 'Pauline Kimotho', 'Pauline Muthoni', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724490476', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1145, 3, 'customer', 1, 'General', 'Simon Murigu', 'Simon Murigu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721683851', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1146, 3, 'customer', 1, 'General', 'ann nyanguthii', 'ann nyanguthii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0745795721', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1147, 3, 'customer', 1, 'General', 'John Mutugi', 'John Mutugi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0715170517', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1148, 3, 'customer', 1, 'General', 'david ndathi', 'David Ndathi', '', 'kirinyaga', 'central', '', '', 'Kenya', '07083237899', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1149, 3, 'customer', 1, 'General', 'fredrick maina', 'Fredrick Maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0703374866', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1150, 3, 'customer', 1, 'General', 'paul muriithi', 'Paul Muriithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0745015322', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1151, 3, 'customer', 1, 'General', 'Anthony gichira', 'Anthony Gichira', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725049528', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1152, 3, 'customer', 1, 'General', 'Anderson Gachoki', 'Anderson Gachoki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0748354616', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1153, 3, 'customer', 1, 'General', 'wycliff', 'Wycliff', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723781570', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1154, 3, 'customer', 1, 'General', 'Isaac thagana', 'Isaac Thagana', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0794316566', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1155, 3, 'customer', 1, 'General', 'Duncan kariuki', 'Duncan Kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720731110', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1156, 3, 'customer', 1, 'General', 'william gichoya', 'William Gichoya', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727942922', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1157, 3, 'customer', 1, 'General', 'mary njeri', 'mary njeri', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722671128', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1158, 3, 'customer', 1, 'General', 'Gitonga', 'Gitonga', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716342299', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1159, 3, 'customer', 1, 'General', 'anthony murimi', 'Anthhony murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710326826', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1160, 3, 'customer', 1, 'General', 'simon murimi', 'simon murimi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722273080', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1161, 3, 'customer', 1, 'General', 'paulo kamau', 'Paulo kamau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720595172', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1162, 3, 'customer', 1, 'General', 'munene', 'mr munene', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721536097', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1163, 3, 'customer', 1, 'General', 'wilson muthii', 'wilson muthii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721293051', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1164, 3, 'customer', 1, 'General', '0721536097', 'mr munene(paul thika)', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721536097', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1165, 3, 'customer', 1, 'General', 'arthur munene', 'arthur munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705764267', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1166, 3, 'customer', 1, 'General', 'maringa samuel', 'maringa samuel', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '07076822913', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1167, 3, 'customer', 1, 'General', 'samuel mutugi', 'samuel mutugi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726439800', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1168, 3, 'customer', 1, 'General', 'macharia safania', 'Macharia safania', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722910119', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1169, 3, 'customer', 1, 'General', 'pauline maina', 'Pauline maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724489583', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1170, 3, 'customer', 1, 'General', 'anthony muthii', 'anthony muthii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0710590969', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1171, 3, 'customer', 1, 'General', 'moses', 'moses', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0703440339', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1172, 3, 'customer', 1, 'General', 'francis maina', 'francis maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0794859766', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1173, 3, 'customer', 1, 'General', 'joseph irungu', 'Joseph Irungu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725330727', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1174, 3, 'customer', 1, 'General', 'kinyua gideon', 'Gideon kinyua', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0756424553', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1175, 3, 'customer', 1, 'General', 'zachARY KITHAKA', 'zachary kithaka', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726679256', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1176, 3, 'customer', 1, 'General', 'Nazarius Gichira', 'Nazarius Gichira', '', 'kirinyaga', 'central', 'kagio', '', 'Kenya', '0726326649', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1177, 3, 'customer', 1, 'General', 'Edward Mwangi', 'Edward Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717054905', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1178, 3, 'customer', 1, 'General', 'james muriithi', 'James muriithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724823641', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1179, 3, 'customer', 1, 'General', 'nicholas mwangi', 'Nicholas mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723430713', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1180, 3, 'customer', 1, 'General', 'John mungai', 'John Mungai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728517743', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1181, 3, 'customer', 1, 'General', 'Gabriel maina', 'Gabriel maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726061477', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1182, 3, 'customer', 1, 'General', 'Gilbert muthee', 'Gilbert muthee', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723948398', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1183, 3, 'customer', 1, 'General', 'benjamin njeru', 'Benjamin  Njeru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711672644', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1184, 3, 'customer', 1, 'General', 'john maria', 'john maria', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728208523', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1185, 3, 'customer', 1, 'General', 'simon muthike', 'SIMON MUTHIKE', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0715238898', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1186, 3, 'customer', 1, 'General', 'isaac mungai', 'isaac mungai', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721419313', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1187, 3, 'customer', 1, 'General', 'james munenr', 'james munenr', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0754313024', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1188, 3, 'customer', 1, 'General', 'joseph riakanau', 'joseph mwangi riakanau', '', 'kasioni', 'mwea', '', '', 'Kenya', '0710527135', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1189, 3, 'customer', 1, 'General', 'jose[h murathii', 'joseph murathii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0729899526', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1190, 3, 'customer', 1, 'General', 'kamau', 'kamau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725960495', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1191, 3, 'customer', 1, 'General', 'james githiji', 'James githiji', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0793308554', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1192, 3, 'customer', 1, 'General', 'martin kariuki', 'martin kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0716750180', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1193, 3, 'customer', 1, 'General', 'moses jeff', 'Moses jeff', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723691178', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1194, 3, 'customer', 1, 'General', 'john ngari', 'John ngari', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0110654403', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1195, 3, 'customer', 1, 'General', 'henry', 'Hemry Kaguuru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0704757705', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1196, 3, 'customer', 1, 'General', '0711614969', 'Florence', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711614969', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1197, 3, 'customer', 1, 'General', 'jeremiah mubena', 'Jeremian Mubena', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0757559825', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1198, 3, 'customer', 1, 'General', 'john warui', 'John Warui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711485472', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1199, 3, 'customer', 1, 'General', 'janet beth', 'Janet Beth', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713377050', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1200, 3, 'customer', 1, 'General', 'alice wairiuko', 'Alice wairiuko', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728933252', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1201, 3, 'customer', 1, 'General', 'francis njeru', 'njeru francis', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724052125', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1202, 3, 'customer', 1, 'General', 'Kennedy njogu', 'kennedy njogu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0729876666', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1203, 3, 'customer', 1, 'General', 'reubenson murimi', 'Reubenson murimi', 'ER', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724072636', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1204, 3, 'customer', 1, 'General', 'ephraim mwangi', 'Ephraim Mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711650729', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1205, 3, 'customer', 1, 'General', 'peter muchiri', 'Peter muchiri', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713477649', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1206, 3, 'customer', 1, 'General', 'nicholas muthii', 'Nicholas muthii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725813663', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1207, 3, 'customer', 1, 'General', 'susan wanjiku', 'Susan wanjiku', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0715179510', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1208, 3, 'customer', 1, 'General', 'joseph muriga', 'Joseph muriga', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0707798502', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1209, 3, 'customer', 1, 'General', 'rahab wairimu', 'Rahab wairimu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720061285', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1210, 3, 'customer', 1, 'General', 'charles wamugunda', 'charles wamugunda', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726294898', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1211, 3, 'customer', 1, 'General', 'Rose Kiongo', 'rose kiongo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721597388', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1212, 3, 'customer', 1, 'General', 'William murimi', 'William murimi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0794056125', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1213, 3, 'customer', 1, 'General', 'geoffrey wachira', 'Geoffrey wachira', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0790344803', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1214, 3, 'customer', 1, 'General', 'beth wanjiru', 'Beth wanjiru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728227156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1215, 3, 'customer', 1, 'General', 'anthony mwangi', 'Anthony mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0705697134', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1216, 3, 'customer', 1, 'General', 'Johnson Kariuki', 'johnson kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726351007', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1217, 3, 'customer', 1, 'General', 'Alfred gathumbi', 'Alfred gathumbi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726380549', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1218, 3, 'customer', 1, 'General', 'Richard Mnuhe', 'Richard Mnuhe', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726300438', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1219, 3, 'customer', 1, 'General', 'James Mugo', 'James Mugo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727141071', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1220, 3, 'customer', 1, 'General', 'Kimathi Kimonte', 'Kimathi Kimonte', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711176331', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1221, 3, 'customer', 1, 'General', 'Margret Kamau', 'Margret Kamau', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726221527', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1222, 3, 'customer', 1, 'General', '0716342299', 'John Gitonga', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0716342299', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1223, 3, 'customer', 1, 'General', 'joseph kimani', 'Joseph Kimani', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726765824', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1224, 3, 'customer', 1, 'General', 'wambui joyce', 'Joyce wambui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717006202', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1225, 3, 'customer', 1, 'General', 'david mugo', 'mugo david', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726068871', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1226, 3, 'customer', 1, 'General', 'mugo mugo david', 'david mugo mugo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726494391', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1227, 3, 'customer', 1, 'General', 'josphat ndai', 'Josphat ndai', '', 'kirinyaga', 'central', 'kagio', '', 'Kenya', '0794246966', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1228, 3, 'customer', 1, 'General', '0704555201', 'john murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704555201', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1229, 3, 'customer', 1, 'General', 'andrew kiragu', 'Andrew kiragu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724596054', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1230, 3, 'customer', 1, 'General', 'muthike kinaara', 'Muthike kinara', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0742026023', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1231, 3, 'customer', 1, 'General', 'samuel njiru', 'Samuel Njiru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0712461445', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1232, 3, 'customer', 1, 'General', 'daviid mugo', 'David mugo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717714808', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1233, 3, 'customer', 1, 'General', 'michael karani', 'michael karani', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723570739', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1234, 3, 'customer', 1, 'General', 'isaac ndugu', 'Isaac ndugu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723469660', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1235, 3, 'customer', 1, 'General', 'johnson maina', 'Johnson maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723001803', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1236, 3, 'customer', 1, 'General', 'hilary maina', 'Hilary Maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0716447816', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1237, 3, 'customer', 1, 'General', 'elijah', 'Elijah (james wachira)', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0708662536', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1238, 3, 'customer', 1, 'General', 'Mirriam kimotho', 'Mirriam Kimotho', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726409040', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1239, 3, 'customer', 1, 'General', 'consolanta wambui', 'consolata wambui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713681231', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1240, 3, 'customer', 1, 'General', 'jacon nyagah', 'Jacob Nyaga', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0741572954', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1241, 3, 'customer', 1, 'General', 'rose', 'Rose', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0706890687', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1242, 3, 'customer', 1, 'General', 'brian munene', 'Brian  Munene', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0714731207', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1243, 3, 'customer', 1, 'General', 'paul gichangi', 'Paul Gichangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700119213', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1244, 3, 'customer', 1, 'General', 'george eric', 'George eric', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724693395', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1245, 3, 'customer', 1, 'General', 'lukas gitari', 'Lukas Gitari', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0715044122', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1246, 3, 'customer', 1, 'General', 'esther njoki', 'Esther njoki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0715223747', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1247, 3, 'customer', 1, 'General', 'julius kariuki', 'julius karriuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '07213633626', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1248, 3, 'customer', 1, 'General', 'licy', 'lucy', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720636529', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1249, 3, 'customer', 1, 'General', 'aloise mwangi', 'Aloise mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0729804511', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1250, 3, 'customer', 1, 'General', 'lydiah mutugi', 'Lydiah  mutugi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0712112154', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1251, 3, 'customer', 1, 'General', 'karaani peter', 'peter karani', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0788105628', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1252, 3, 'customer', 1, 'General', 'benard muraguri', 'benard muraguri', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728261174', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1253, 3, 'customer', 1, 'General', 'james muthii', 'james muthhii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0704215798', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1254, 3, 'customer', 1, 'General', 'eugine waithaka', 'Eugine waithaka', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711229697', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1255, 3, 'customer', 1, 'General', 'benard muriithi', 'Benard muriithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0798634997', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1256, 3, 'customer', 1, 'General', 'muriithi maringa', 'muriithi maringa', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722835926', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1257, 3, 'customer', 1, 'General', 'gatero', 'Gatero', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724702627', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1258, 3, 'customer', 1, 'General', 'raphael muiruri', 'Raphael muiruri', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723489390', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1259, 3, 'customer', 1, 'General', 'wa emmah', 'wa emmah', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0754407375', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1260, 3, 'customer', 1, 'General', 'john mwangi', 'John mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0740020970', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1261, 3, 'customer', 1, 'General', 'stanley gitari', 'Stanley Gitari', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726046794', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1262, 3, 'customer', 1, 'General', 'james gachoki', 'James Gachoki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0792469402', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1263, 3, 'customer', 1, 'General', 'Wa Migwi', 'Wa Migwi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0702666559', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1264, 3, 'customer', 1, 'General', 'Simon Muchoki', 'Simon Muchoki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0798766796', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1265, 3, 'customer', 1, 'General', 'Samuel Kamau cucumber', 'Samuel Kamau cucumber', '', 'kirinyaga', 'central', '', '', 'Kenya', '0738171816', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1266, 3, 'customer', 1, 'General', 'Titus Mwangi', 'Titus Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0708836610', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1267, 3, 'customer', 1, 'General', 'Moses Njega', 'Moses Njega', '', 'kirinyaga', 'central', '', '', 'Kenya', '0797885799', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1268, 3, 'customer', 1, 'General', 'Samuel  Kangeche', 'Samuel  Kangeche', '', 'kirinyaga', 'central', '', '', 'Kenya', '0719351311', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1269, 3, 'customer', 1, 'General', 'Stanley Wachira', 'Stanley Wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728480714', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1270, 3, 'customer', 1, 'General', 'Jane Wanjiru', 'Jane Wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726713626', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1271, 3, 'customer', 1, 'General', 'Mary Mugo', 'Mary Mugo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720301464', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1272, 3, 'customer', 1, 'General', 'Richard 0722393354', 'Richard Hoho', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722393354', 'dicksonmuraya44@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 (1273, 3, 'customer', 1, 'General', 'Derrick Kangangi', 'Derrick Kangangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721576536', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1274, 3, 'customer', 1, 'General', 'antony murimi ansal', 'antony murimi ansal', '', 'kirinyaga', 'central', '', '', 'Kenya', '0702577229', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1275, 3, 'customer', 1, 'General', 'john mwangi', 'John mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717091317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1276, 3, 'customer', 1, 'General', 'kimani muthami', 'joseph kimani muthami', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0748028650', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1277, 3, 'customer', 1, 'General', 'festus musau', 'Festus musau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '071781743', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1278, 3, 'customer', 1, 'General', 'stephen muthee', 'Stephen muthee', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0793613855', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1279, 3, 'customer', 1, 'General', 'pauline Gitika', 'Pauline Gitika', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721235902', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1280, 3, 'customer', 1, 'General', 'nahashon wachira', 'Nahashon wachira', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0799519295', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1281, 3, 'customer', 1, 'General', 'paul ngari', 'Paul ngari', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724769613', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1282, 3, 'customer', 1, 'General', 'Monicah', 'Monicah', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712833162', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1283, 3, 'customer', 1, 'General', 'John Maina', 'John Maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0745839061', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1284, 3, 'customer', 1, 'General', 'Edgar Bundi', 'Edgar Bundi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0793074378', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1285, 3, 'customer', 1, 'General', 'Eliud Musyimi', 'Eliud Musyimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0706983001', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1286, 3, 'customer', 1, 'General', 'Ephantus Bundi', 'Ephantus Bundi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712681448', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1287, 3, 'customer', 1, 'General', 'Fredrick Muriuki', 'Fredrick Muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724155988', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1288, 3, 'customer', 1, 'General', 'Francis Mwai', 'Francis Mwai', '', 'kirinyaga', 'central', '', '', 'Kenya', '0740278505', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1289, 3, 'customer', 1, 'General', 'kiburi agnes', 'Agnes Wangari  kiburi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711592466', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1290, 3, 'customer', 1, 'General', 'jonathan', 'Jonathan', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728491329', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1291, 3, 'customer', 1, 'General', 'john(0723831005)', 'John warui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723831005', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1292, 3, 'customer', 1, 'General', 'elijah (0712922009)', 'Elijah maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0712922009', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1293, 3, 'customer', 1, 'General', 'wachira eric 0115004184', 'eric wachira', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0115004184', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1294, 3, 'customer', 1, 'General', 'charles karangi(0721931744)', 'charles karangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721931744', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1295, 3, 'customer', 1, 'General', 'mucogia(0736612902)', 'mucogia', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0736612902', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1296, 3, 'customer', 1, 'General', 'njeru cucumber', 'David njeru cucumber', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0710996082', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1297, 3, 'customer', 1, 'General', 'grace wambui', 'Grace Wambui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700351573', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1298, 3, 'customer', 1, 'General', 'George wamwea', 'George wamwea', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0727162177', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1299, 3, 'customer', 1, 'General', 'Gatimu', 'Gatimu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0703402382', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1300, 3, 'customer', 1, 'General', 'allan mwangi', 'allan mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0716574475', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1301, 3, 'customer', 1, 'General', 'josphat mutahi', 'Josphat mutahi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0706163636', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1302, 3, 'customer', 1, 'General', 'francis muriuki', 'Francis muriuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '07275111236', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1303, 3, 'customer', 1, 'General', 'julius kamau', 'Julius 0717553198', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717553198', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1304, 3, 'customer', 1, 'General', 'moses kariuki', 'Moses Kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0700175231', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1305, 3, 'customer', 1, 'General', 'sophia kariuki', 'sophia kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0743690231', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1306, 3, 'customer', 1, 'General', 'isabella mwangi', 'isabella mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0706623477', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1307, 3, 'customer', 1, 'General', 'anthony muriimi', 'anthony (0702577229)', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0702577229', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1308, 3, 'customer', 1, 'General', 'njoronge 0728171460', 'Joseph njoronge', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728171460', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1309, 3, 'customer', 1, 'General', 'gathumbi', 'gathumbi 0706502028', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0706502028', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1310, 3, 'customer', 1, 'General', 'muthii fredrick', 'Fredrick muthii', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0701248709', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1311, 3, 'customer', 1, 'General', 'joseph mureithi', 'Joseph mureithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720589285', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1312, 3, 'customer', 1, 'General', 'johnson kinyua', 'Johnson kinyua', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0705124295', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1313, 3, 'customer', 1, 'General', 'kaminja', 'kaminja', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723525156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1314, 3, 'customer', 1, 'General', 'samuel maina', 'Samuel Warui Maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0746590865', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1315, 3, 'customer', 1, 'General', 'judy muthoni', 'judy 0729580908', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0729580908', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1316, 3, 'customer', 1, 'General', 'michael kinyua', 'michael kinyua', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0769396378', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1317, 3, 'customer', 1, 'General', 'peter kinyua', 'peter kinyua', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0740417878', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1318, 3, 'customer', 1, 'General', 'geoffrey gatimu', 'geoffrey gatimu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0786481209', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1319, 3, 'customer', 1, 'General', 'amoz mwai', 'Amos  mwai', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0702719040', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1320, 3, 'customer', 1, 'General', 'simon thiongo', 'simon thiongo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722349333', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1321, 3, 'customer', 1, 'General', 'anthony muriithi', 'Anthony 0707985451', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0707985451', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1322, 3, 'customer', 1, 'General', 'festus mwangui', 'Festus  0708791485', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0708791485', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1323, 3, 'customer', 1, 'General', 'wilson muthee', 'wilson muthee', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0759742467', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1324, 3, 'customer', 1, 'General', 'pauline', 'Pauline 0741488550', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0741488550', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1325, 3, 'customer', 1, 'General', 'David Gitau', 'David Gitau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721683860', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1326, 3, 'customer', 1, 'General', 'Simon Kinyua', 'Simon Kinyua', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0795212221', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1327, 3, 'customer', 1, 'General', 'Nebat Wamae', 'Nebat Wamae', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '072928071', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1328, 3, 'customer', 1, 'General', 'stephen waweru', 'stephen waweru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0797154188', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1329, 3, 'customer', 1, 'General', 'justus karimi', 'justus karimi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0100720193', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1330, 3, 'customer', 1, 'General', 'peter gatimu', 'peter gatimu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717463540', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1331, 3, 'customer', 1, 'General', 'gibson gichuki', 'gibson gichuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0701319233', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1332, 3, 'customer', 1, 'General', 'robert munene', 'Robert munene', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0718727432', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1333, 3, 'customer', 1, 'General', 'grace waweru', 'Grace waweru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0746365278', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1334, 3, 'customer', 1, 'General', 'daniel muthike', 'Daniel muthike', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0712601860', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1335, 3, 'customer', 1, 'General', 'james maina', 'James maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700866174', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1336, 3, 'customer', 1, 'General', 'mwaniki muriithi', 'mwaniki muriithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724418846', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1337, 3, 'customer', 1, 'General', 'julius njuki', 'Julius njuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0758403007', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1338, 3, 'customer', 1, 'General', 'joseph muriuki', 'joseph 07213674764', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721367464', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1339, 3, 'customer', 1, 'General', 'james murage', 'james murage', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0704725856', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1340, 3, 'customer', 1, 'General', 'benson kamau', 'benson kamau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725960495', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1341, 3, 'customer', 1, 'General', 'joseph', 'Joseph 0724435630', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724435630', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1342, 3, 'customer', 1, 'General', 'eric muriuki', 'eric muriuki', '', 'kirinyaga', 'central', 'kagio', '', 'Kenya', '0706502827', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1343, 3, 'customer', 1, 'General', 'peter', 'peter 0712351069', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0712351069', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1344, 3, 'customer', 1, 'General', 'Anthony Mwangi', 'Anthony Mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0110387978', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1345, 3, 'customer', 1, 'General', 'George Nzomo', 'George Nzomo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0732842787', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1346, 3, 'customer', 1, 'General', 'Raphael Muriithi', 'Raphael Muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726953424', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1347, 3, 'customer', 1, 'General', 'robert mwangi', 'Robert mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725239442', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1348, 3, 'customer', 1, 'General', 'andrew muturi', 'andrew muturi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720966355', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1349, 3, 'customer', 1, 'General', 'purity  chomba', 'purity chomba', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0704597549', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1350, 3, 'customer', 1, 'General', 'erick mwangi', 'Erick mwangi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0707761037', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1351, 3, 'customer', 1, 'General', 'gerald murimi', 'Gerald karimi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0706329663', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1352, 3, 'customer', 1, 'General', 'jane kimundu', 'jane kimundu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713802756', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1353, 3, 'customer', 1, 'General', 'jane', 'jane 0726713626', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726713626', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1354, 3, 'customer', 1, 'General', 'John kinyua 0726790909', 'john kinyua', '', 'kirinyanga', 'central', '', '', '', '0726790909', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1355, 3, 'customer', 1, 'General', 'douglas', 'Douglas kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700660156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1356, 3, 'customer', 1, 'General', 'joan', 'joan', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722401128', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1357, 3, 'customer', 1, 'General', 'kangara', 'kangara', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713443111', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1358, 3, 'customer', 1, 'General', 'julius kariuki', 'julius 0723633626', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723633626', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1359, 3, 'customer', 1, 'General', 'lucy', 'lucy 0720636529', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720636529', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1360, 3, 'customer', 1, 'General', 'irene  muriithi', 'irene muriithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0721984124', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1361, 3, 'customer', 1, 'General', 'maiko munene', 'maiko munene', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725740102', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1362, 3, 'customer', 1, 'General', 'damaris wairimu', '0724752782 damaris', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0724752782', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1363, 3, 'customer', 1, 'General', 'anne wambui', 'anne wambui', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728201075', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1364, 3, 'customer', 1, 'General', 'stephen kimotho', 'stephen kimotho', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722819021', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1365, 3, 'customer', 1, 'General', 'jenario gikunju', 'jenario gikunju', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727568421', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1366, 3, 'customer', 1, 'General', 'andrew githiji', 'andrew githinji', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725143050', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1367, 3, 'customer', 1, 'General', 'nahashon gitari', 'nahashon gitati', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0785275279', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1368, 3, 'customer', 1, 'General', 'michael muriuki', 'michael muriuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0101156061', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1369, 3, 'customer', 1, 'General', 'francis waweru', 'francis waweru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721230858', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1370, 3, 'customer', 1, 'General', 'geoffrey waweru', 'geoffrey waweru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728952205', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1371, 3, 'customer', 1, 'General', 'cyrus kithaka', 'cyrus kithaka', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722940951', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1372, 3, 'customer', 1, 'General', 'jason mworia', 'jason mworia', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713818400', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1373, 3, 'customer', 1, 'General', 'richard waweru', 'richard waweru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0707317884', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1374, 3, 'customer', 1, 'General', 'josphia mutugi', 'josphia mutugi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0795038049', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1375, 3, 'customer', 1, 'General', 'john mureithi', 'john mureithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0711701306', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1376, 3, 'customer', 1, 'General', 'peter muriuki', 'peter  muriuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0795898979', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1377, 3, 'customer', 1, 'General', 'jane muriuki', 'Jane0710171268', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0710171268', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1378, 3, 'customer', 1, 'General', 'manasseh murage', 'manasseh murage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729275610', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1379, 3, 'customer', 1, 'General', 'samwel luta', 'Samwel luta', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0797269968', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1380, 3, 'customer', 1, 'General', 'douglas kamau', 'Douglas kamau', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700660156', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1381, 3, 'customer', 1, 'General', 'eliud muthike', 'Eliud muthike', '', 'kirinyaga', 'central', '', '', 'Kenya', '0797575333', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1382, 3, 'customer', 1, 'General', 'monica kagera', 'monica kagera', '', 'kirinyaga', 'central', '', '', 'Kenya', '0790961985', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1383, 3, 'customer', 1, 'General', 'mary ngiriri', 'mary ngiriri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0718961280', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1384, 3, 'customer', 1, 'General', 'peter wanja', 'peter wanja', '', 'kirinyaga', 'central', '', '', 'Kenya', '0743446071', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1385, 3, 'customer', 1, 'General', 'jane wanjiru', 'Jane  wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710527800', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1386, 3, 'customer', 1, 'General', 'wilson chomba', 'Wilson chomba', '', 'kirinyaga', 'central', '', '', 'Kenya', '0798828181', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1387, 3, 'customer', 1, 'General', 'rosemary magondu', 'Rosemary magondu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726657376', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1388, 3, 'customer', 1, 'General', 'jeffitha cubi', 'Jeffitha cubi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703855101', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1389, 3, 'customer', 1, 'General', 'john munene', 'john munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721647109', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1390, 3, 'customer', 1, 'General', 'moses kagema', 'moses kagema', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716853538', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1391, 3, 'customer', 1, 'General', 'john thiongo', 'John thiongo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720462964', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1392, 3, 'customer', 1, 'General', 'agnes wanjiku', 'agnes wanjiku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722495063', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1393, 3, 'customer', 1, 'General', 'john kyalo', 'john kyalo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723742123', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1394, 3, 'customer', 1, 'General', 'brian muthii', 'brian muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0795872854', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1395, 3, 'customer', 1, 'General', 'douglas wachira', 'douglas wachira', '', 'kirinyaga', 'central', '', '', 'Kenya', '07723839544', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1396, 3, 'customer', 1, 'General', 'hoseah kangangi', 'hoseah kangangi', '', 'Riakanau', 'Mwea', '', '', 'Kenya', '0725258221', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1397, 3, 'customer', 1, 'General', 'john karigo', 'John karigo', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0792267176', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1398, 3, 'customer', 1, 'General', 'james', 'james 0717208571', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717208571', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1399, 3, 'customer', 1, 'General', 'duncan warui', 'Duncan warrui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725065517', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1400, 3, 'customer', 1, 'General', 'josphat mwangi', 'josphat mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0795785970', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1401, 3, 'customer', 1, 'General', 'charles wabuiya', 'charles wabuiya', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723570670', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1402, 3, 'customer', 1, 'General', 'rockfeller murage', 'rockfeller murage', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0727783491', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1403, 3, 'customer', 1, 'General', 'charles', 'charles 0743266125', '', 'kirinyaga', 'central', '', '', 'Kenya', '0743266125', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1404, 3, 'customer', 1, 'General', 'bedan mwangi', 'Bedan mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0743824107', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1405, 3, 'customer', 1, 'General', 'cherono', 'roseline cherono', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722409662', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1406, 3, 'customer', 1, 'General', 'benard mwangi', 'Benard mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769131995', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1407, 3, 'customer', 1, 'General', 'faith wairimu', 'faith wairimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721435161', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1408, 3, 'customer', 1, 'General', 'harrison njeru', 'harrison njeru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721319046', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1409, 3, 'customer', 1, 'General', 'stephen muriuki', 'stephen muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725338302', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1410, 3, 'customer', 1, 'General', 'janet wanjiru', 'janet wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717973968', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1411, 3, 'customer', 1, 'General', 'nelson njenga', 'nelson njenga', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726904920', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1412, 3, 'customer', 1, 'General', 'rosslyn', 'rosslyn kiplangatt', '', 'kirinyaga', 'central', '', '', 'Kenya', '0757193467', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1413, 3, 'customer', 1, 'General', 'poline muthoni', 'poline muthoni', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726898844', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1414, 3, 'customer', 1, 'General', 'james chomba', 'james chomba', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724537011', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1415, 3, 'customer', 1, 'General', 'joseph murimi', 'joseph murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0110430590', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1416, 3, 'customer', 1, 'General', 'mary mother', 'mary mother', '', 'kirinyaga', 'central', '', '', 'Kenya', '0104678157', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1417, 3, 'customer', 1, 'General', 'lawrence njoka', 'Lawrence chomba', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710320262', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1418, 3, 'customer', 1, 'General', 'simon njama', 'simon njaama', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710527524', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1419, 3, 'customer', 1, 'General', 'joseph nyamu', 'Joseph nyamu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723766408', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1420, 3, 'customer', 1, 'General', 'thomas', 'Thomas murage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720537546', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1421, 3, 'customer', 1, 'General', 'DOUGLAS', 'Douglas 0723839544', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723839544', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1422, 3, 'customer', 1, 'General', 'stanley njoronge', 'stanley njoronge', '', 'kirinyaga', 'central', '', '', 'Kenya', '0115370830', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1423, 3, 'customer', 1, 'General', 'dennis kariuki', 'dennis kariuki', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0707943329', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1424, 3, 'customer', 1, 'General', 'simon gakungu', 'simon gakugu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0700476464', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1425, 3, 'customer', 1, 'General', 'benson ndegwa', 'benson ndegwa', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0710347520', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1426, 3, 'customer', 1, 'General', 'peter murage', 'peter murage', '', 'kirinyaga', 'central', '', '', 'Kenya', '0791210036', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1427, 3, 'customer', 1, 'General', 'john gachie', 'john  gachie', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722351902', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1428, 3, 'customer', 1, 'General', 'eunice bundi', 'eunice bundi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0726411479', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1429, 3, 'customer', 1, 'General', 'charles gatimu', 'charles gatimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721951879', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1430, 3, 'customer', 1, 'General', 'miriam nyawira', 'miriam nyawira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0718474942', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1431, 3, 'customer', 1, 'General', 'rosebelt wawira', 'rosebelt wawira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0790877040', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1432, 3, 'customer', 1, 'General', 'moses nyamu', '0710524254  moses nyamu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710524254', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1433, 3, 'customer', 1, 'General', 'moffat mureithi', 'moffat mureithi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722409175', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1434, 3, 'customer', 1, 'General', 'manegene', 'ceasar  manegene', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0701804866', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1435, 3, 'customer', 1, 'General', 'amos gatimu', 'amos gatimu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0723250013', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1436, 3, 'customer', 1, 'General', 'ephantus waweru', 'Ephantus waweru', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728315290', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1437, 3, 'customer', 1, 'General', '0703386984', 'harrison murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703386984', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1438, 3, 'customer', 1, 'General', 'jeremiah nguku', 'jeremiah nguku', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0713386484', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1439, 3, 'customer', 1, 'General', 'ezekiah irungu', 'Ezekiah irungu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0728992692', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1440, 3, 'customer', 1, 'General', 'fredrick njeru', 'fredrick njeru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0746034044', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1441, 3, 'customer', 1, 'General', 'joram muriuki', 'joram muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705766164', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1442, 3, 'customer', 1, 'General', 'douglas kimotho', 'douglas kimotho', '', 'kirinyaga', 'central', '', '', 'Kenya', '0714858739', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', 'q');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1443, 3, 'customer', 1, 'General', 'peter mathenge', 'peter mathenge', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727684985', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1444, 3, 'customer', 1, 'General', 'alfred muriithi', 'alfred murioithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712866065', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1445, 3, 'customer', 1, 'General', 'philip muthii', 'philip muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0707797317', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1446, 3, 'customer', 1, 'General', 'muthoni munene', 'muthoni munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728059279', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1447, 3, 'customer', 1, 'General', 'david ndungu', 'david ndungu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0720818951', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1448, 3, 'customer', 1, 'General', 'kennedy mutei', 'kennedy mutei', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724900921', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1449, 3, 'customer', 1, 'General', 'henry karuri', 'henry karuri', '', 'kirinyaga', 'central', '', '', 'Kenya', '07299458216', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1450, 3, 'customer', 1, 'General', 'patrick maina', 'patrick maina', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0717525248', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1451, 3, 'customer', 1, 'General', 'patrick mwaura', 'patrick mwaura', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0797232556', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1452, 3, 'customer', 1, 'General', 'peter mbutu', 'peter mbutu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723768241', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1453, 3, 'customer', 1, 'General', 'simon kibinda', 'simon kibinda', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726019527', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1454, 3, 'customer', 1, 'General', 'pauline mugo', 'pauline mugo', '', 'kirinyaga', 'central', '', '', 'Kenya', '0793633040', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1455, 3, 'customer', 1, 'General', 'jemimah wambui', 'Jemimah wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0717383787', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1456, 3, 'customer', 1, 'General', 'jannifer njeri', 'janiiffer njeri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722474890', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1457, 3, 'customer', 1, 'General', 'peter gacuji', 'peter gacuji', '', 'kirinyaga', 'central', '', '', 'Kenya', '07381235236', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1458, 3, 'customer', 1, 'General', 'damaris wairimu', 'Damaris wairimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723270450', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1459, 3, 'customer', 1, 'General', 'rodah wanjiku', 'rodah wanjiku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720113412', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1460, 3, 'customer', 1, 'General', 'eliud muriithi', 'eliud muriithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0745900206', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1461, 3, 'customer', 1, 'General', 'musa njoka', 'musa njoka', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728366312', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1462, 3, 'customer', 1, 'General', 'david maina', 'david maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705103528', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1463, 3, 'customer', 1, 'General', 'samuel ndungu', 'samuel ndungu', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0757231895', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1464, 3, 'customer', 1, 'General', 'preston macharia', 'preston macharia', '', 'kirinyaga', 'central', '', '', 'Kenya', '07115967594', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1465, 3, 'customer', 1, 'General', 'samuel ndeithi', 'samuel ndeithi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0712127159', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1466, 3, 'customer', 1, 'General', 'peter ngubu', 'peter ngubu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727160435', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1467, 3, 'customer', 1, 'General', 'john maina', 'john maina', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722407529', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1468, 3, 'customer', 1, 'General', 'evans magondu', 'Evans magondu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0736817789', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1469, 3, 'customer', 1, 'General', 'evans murimi', 'evans murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711341667', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1470, 3, 'customer', 1, 'General', 'james gichira', 'james gichira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728633100', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1471, 3, 'customer', 1, 'General', 'gatimu', 'gatimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0783299341', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1472, 3, 'customer', 1, 'General', 'wa mwas', 'wa mwas', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721818777', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1473, 3, 'customer', 1, 'General', 'grace wanjiru', 'grace wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705170271', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1474, 3, 'customer', 1, 'General', 'ephantus kinyua', 'Ephantus kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703721764', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', 'q');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1475, 3, 'customer', 1, 'General', 'edith wanjiku', 'edith wanjiku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705322918', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1476, 3, 'customer', 1, 'General', 'purity warui', 'purity warui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0704597549', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1477, 3, 'customer', 1, 'General', 'paul', 'paul', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725924927', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1478, 3, 'customer', 1, 'General', 'simon murimiq', 'simon murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769313804', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1479, 3, 'customer', 1, 'General', 'jackson githiji', 'Jackson githiji', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703648033', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1480, 3, 'customer', 1, 'General', 'johnson mwathi', 'johnson mwathi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725259497', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1481, 3, 'customer', 1, 'General', 'christopher mwangi', 'christopher mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722792349', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1482, 3, 'customer', 1, 'General', 'hezekiah maina', 'hezekiah  maiona', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729494308', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1483, 3, 'customer', 1, 'General', 'kinyua', 'kinyua', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726213756', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1484, 3, 'customer', 1, 'General', 'charles munene', 'charles munene', '', 'kirinyaga', 'central', '', '', 'Kenya', '0721116533', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1485, 3, 'customer', 1, 'General', 'elias kibuti', 'elias kibuti', '', 'kirinyaga', 'central', '', '', 'Kenya', '0713494997', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1486, 3, 'customer', 1, 'General', 'gideon muthike', 'gideon muthike', '', 'kirinyaga', 'central', '', '', 'Kenya', '0706699162', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1487, 3, 'customer', 1, 'General', '0705944606', '0705944606', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705944606', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1488, 3, 'customer', 1, 'General', 'purity wangeci', 'purity wangeci', '', 'kirinyaga', 'central', '', '', 'Kenya', '0718819218', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1489, 3, 'customer', 1, 'General', 'edward theuri', 'edward theuri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723091242', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1490, 3, 'customer', 1, 'General', 'josphat', 'Josphat 0753093555', '', 'kirinyaga', 'central', '', '', 'Kenya', '0753093555', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1491, 3, 'customer', 1, 'General', 'charles bundi', 'charles bundi', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0725253463', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1492, 3, 'customer', 1, 'General', 'fredrick muthii', 'fredrick muthii', '', 'kirinyaga', 'central', '', '', 'Kenya', '0701248709', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1493, 3, 'customer', 1, 'General', 'JOHN', 'john0702899212', '', 'kirinyaga', 'central', '', '', 'Kenya', '0702899212', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1494, 3, 'customer', 1, 'General', 'damaris', 'Damaris muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722464826', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1495, 3, 'customer', 1, 'General', 'timothy mutisya', 'timothy mutisya', '', 'kirinyaga', 'central', '', '', 'Kenya', '07276188341', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1496, 3, 'customer', 1, 'General', 'grace wanjiku', 'grace wanjiku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0799098313', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1497, 3, 'customer', 1, 'General', 'michael kariuki', 'michael kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0748031204', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1498, 3, 'customer', 1, 'General', 'william munyi', 'william munyi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0720551929', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1499, 3, 'customer', 1, 'General', 'moses wacira', 'moese wacira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710677963', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1500, 3, 'customer', 1, 'General', 'david njeru', 'David njeru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710996082', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1501, 3, 'customer', 1, 'General', 'benard muraguri', 'Benard muraguri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728261174', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1502, 3, 'customer', 1, 'General', 'pricilar mwambi', 'pricilar mwambi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727768462', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1503, 3, 'customer', 1, 'General', 'jason nyaga', 'jason nyaga', '', 'kirinyaga', 'central', '', '', 'Kenya', '0715994664', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1504, 3, 'customer', 1, 'General', 'esther miano', 'esther miano', '', 'kirinyaga', 'central', 'kenya', '', 'Kenya', '0722892401', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1505, 3, 'customer', 1, 'General', 'agnes wacera', 'agnes wacera', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729255718', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1506, 3, 'customer', 1, 'General', 'zachary karimi', 'zachary karimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0798601972', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1507, 3, 'customer', 1, 'General', 'elizabeth warukira', 'Elizabeth warukira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726707224', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1508, 3, 'customer', 1, 'General', 'luke murimi', 'luke murimi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0758190160', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1509, 3, 'customer', 1, 'General', 'erastus waruhiu', 'erastus waruhiu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0799395438', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1510, 3, 'customer', 1, 'General', 'jane wanjiru', 'jane wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710578000', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1511, 3, 'customer', 1, 'General', 'esther kangangi', 'Esther kangangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723915419', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1512, 3, 'customer', 1, 'General', 'stephen shikuku', 'stephen shikuku', '', 'kirinyaga', 'central', '', '', 'Kenya', '0757039279', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1513, 3, 'customer', 1, 'General', 'nancy wanjiru', 'nancy wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0769697093', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1514, 3, 'customer', 1, 'General', 'euditah kabaya', 'Euditah kabaya', '', 'kirinyaga', 'central', '', '', 'Kenya', '0725585108', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1515, 3, 'customer', 1, 'General', 'morrison gitau', 'morrison gitau', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716335997', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1516, 3, 'customer', 1, 'General', 'moses kaguta', 'moses kaguta', '', 'kirinyaga', 'central', '', '', 'Kenya', '0748914027', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1517, 3, 'customer', 1, 'General', 'samwel mwangi', 'samwel mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0715251028', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1518, 3, 'customer', 1, 'General', 'john warui', 'john njiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0798623025', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1519, 3, 'customer', 1, 'General', 'joseph kahutu', 'joseph kahutu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0726169330', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1520, 3, 'customer', 1, 'General', 'beatrice wambui', 'Beatrice wambui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0728969233', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1521, 3, 'customer', 1, 'General', 'titus gatitu', 'titus gatitu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711528469', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1522, 3, 'customer', 1, 'General', 'susan wanjohi', 'susan wanjohi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724957750', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1523, 3, 'customer', 1, 'General', 'patrick kangiri', 'patrick kangiri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0707219170', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1524, 3, 'customer', 1, 'General', 'michael warui', 'michael warui', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722943957', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1525, 3, 'customer', 1, 'General', 'joanina wathimu', 'Joanina wathimu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722734406', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1526, 3, 'customer', 1, 'General', 'lydiah wanjiru', 'lydiah wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0727374312', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1527, 3, 'customer', 1, 'General', 'jane wanjiru', 'Jane wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0710578000', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1528, 3, 'customer', 1, 'General', 'JANE KIBUTI', 'jane kibuti', '', 'kirinyaga', 'central', '', '', 'Kenya', '0797295002', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1529, 3, 'customer', 1, 'General', 'nancy muchira', 'Nancy muchira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0723787864', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1530, 3, 'customer', 1, 'General', 'milka wanjiru', 'milka wanjiru', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724098903', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1531, 3, 'customer', 1, 'General', 'dancan kariuki', 'dancan kariuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716164482', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1532, 3, 'customer', 1, 'General', 'rahab wawira', 'rahab wawira', '', 'kirinyaga', 'central', '', '', 'Kenya', '0705570938', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1533, 3, 'customer', 1, 'General', 'janiffer njeri', 'janiffer njeri', '', 'kirinyaga', 'central', '', '', 'Kenya', '0722474890', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1534, 3, 'customer', 1, 'General', 'daniel boro', 'Daniel boro', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729372855', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1535, 3, 'customer', 1, 'General', 'peter irungu', 'peter irungu', '', 'kirinyaga', 'central', '', '', 'Kenya', '0740417878', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1536, 3, 'customer', 1, 'General', 'harrison mwangi', 'harrison mwangi', '', 'kirinyaga', 'central', '', '', 'Kenya', '0703415018', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1537, 3, 'customer', 1, 'General', 'anthony muthee', 'anthony muthee', '', 'kirinyaga', 'central', '', '', 'Kenya', '0711445054', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1538, 3, 'customer', 1, 'General', 'morris mugwe', 'MORRIS mugwe', '', 'kirinyaga', 'central', '', '', 'Kenya', '0716335997', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1539, 3, 'customer', 1, 'General', 'peter muriuki', 'peter  muriuki', '', 'kirinyaga', 'central', '', '', 'Kenya', '0729494388', '', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1540, 3, 'customer', 1, 'General', 'venasia beth', 'venasia beth', '', 'kirinyaga', 'central', '', '', 'Kenya', '0724036072', '', '', '', '', '', '', '', 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=InnoDB AUTO_INCREMENT=3960 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2872, '2025-02-04', 976, 2998, 1695, 729, '16.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '25.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2878, '2025-02-04', 976, 3002, 1699, 723, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '84.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2879, '2025-02-04', 976, 3003, 1700, 723, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '54.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2880, '2025-02-05', 976, 3004, 1701, 723, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '52.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2892, '2025-02-18', 976, 3017, 1710, 721, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '109.5000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2899, '2025-02-18', 976, 3024, 1717, 721, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '76.5000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2901, '2025-02-18', 1072, 3026, 1719, 727, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '16.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2904, '2025-01-28', 976, 3029, 1721, 721, '2.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '64.5000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2905, '1970-01-01', 976, 3030, 1722, 721, '21.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '43.5000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2908, '2025-01-28', 976, 3033, 1724, 721, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '28.5000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2914, '2025-01-20', 976, 3037, 1727, 713, '82.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '0.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2915, '2025-01-20', 976, 3037, 1727, 711, '7.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '129.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2916, '2025-02-18', 1094, 3038, 1728, 728, '2.2500', '0.0000', '0.0000', '1000.0000', '1000.0000', '75.7500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2918, '2025-02-03', 976, 3040, 1729, 711, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '105.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2920, '2025-01-23', 976, 3042, 1730, 711, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '103.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2922, '2025-01-22', 976, 3044, 1731, 711, '14.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '75.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2927, '2025-01-21', 976, 3049, 1735, 711, '13.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '7.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2928, '2025-02-17', 1101, 3050, 1736, NULL, '2.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2929, '2025-02-17', 1126, 3051, 1737, NULL, '3.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2931, '2025-02-14', 1113, 3053, 1739, NULL, '2.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2932, '2025-02-14', 1104, 3054, 1740, NULL, '4.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2933, '2025-02-13', 1139, 3055, 1741, NULL, '2.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2934, '2025-02-14', 1138, 3056, 1742, NULL, '42.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2935, '2025-02-13', 1133, 3057, 1743, NULL, '7.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2936, '2025-02-13', 1133, 3058, 1744, NULL, '7.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2937, '2025-02-01', 1133, 3059, 1745, NULL, '2.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2938, '2025-02-03', 1136, 3060, 1746, NULL, '4.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2945, '2025-02-13', 1138, 3067, 1753, NULL, '42.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2948, '2025-01-21', 1127, 3070, 1756, NULL, '12.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2954, '2025-01-28', 1131, 3076, 1762, NULL, '34.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2955, '2025-01-28', 1114, 3077, 1763, NULL, '4.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2957, '2025-01-28', 1104, 3079, 1765, NULL, '1.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2958, '2025-01-29', 1130, 3080, 1766, NULL, '6.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2961, '2025-01-21', 1117, 3083, 1755, NULL, '5.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2962, '2025-02-19', 1094, 3084, 1769, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '73.7500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2963, '2025-02-19', 1072, 3085, 1769, 727, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '14.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2964, '2025-02-19', 1094, 3086, 1770, 728, '1.5000', '0.0000', '0.0000', '1000.0000', '1000.0000', '72.2500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2965, '2025-02-19', 976, 3087, 1771, 711, '7.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2966, '2025-02-19', 976, 3087, 1771, 710, '1.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '121.5000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2967, '2025-02-19', 976, 3088, 1771, 711, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '6.5000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2970, '2025-02-19', 961, 3091, 1774, 717, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '26.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2972, '2025-02-19', 976, 3093, 1776, 710, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '100.5000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2975, '2025-02-19', 976, 3096, 1779, 710, '38.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '2.5000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2976, '2025-02-19', 976, 3097, 1780, 710, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '1.5000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2977, '2025-02-19', 1094, 3098, 1781, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '70.2500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2987, '2025-02-20', 976, 3109, 1788, 707, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '96.5000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2988, '2025-01-30', 1122, 3110, 1789, NULL, '19.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2989, '2025-02-20', 1094, 3111, 1790, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '68.2500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2990, '2025-01-31', 1134, 3112, 1791, NULL, '11.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2996, '2025-02-07', 1047, 3118, 1797, 725, '6.0000', '0.0000', '0.0000', '800.0000', '800.0000', '74.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2997, '2025-02-07', 961, 3119, 1798, 734, '8.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '22.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2999, '2025-02-07', 976, 3121, 1800, 731, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '35.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3009, '2025-02-10', 976, 3129, 1808, 706, '13.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '50.5000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3019, '2025-02-20', 976, 3137, 1816, NULL, '110.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-110.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3020, '2025-01-23', 1129, 3138, 1758, NULL, '10.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3022, '2025-02-20', 961, 3140, 1818, 734, '7.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '15.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3023, '2025-02-20', 976, 3141, 1819, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3027, '2025-01-29', 976, 3145, 1823, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3030, '2025-02-20', 1094, 3148, 1825, 730, '2.5000', '0.0000', '0.0000', '1000.0000', '1000.0000', '89.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3034, '2025-02-20', 976, 3152, 1828, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3039, '2025-01-24', 976, 3156, 1830, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3040, '2025-01-24', 982, 3157, 1830, 735, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '19.0000', 1, 0, NULL, 95, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3043, '2025-01-24', 982, 3160, 1831, 735, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '15.0000', 1, 0, NULL, 95, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3044, '2025-01-24', 976, 3161, 1831, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3048, '2025-02-21', 1031, 3165, 1835, 716, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '26.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3051, '2025-02-21', 976, 3169, 1838, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3054, '2025-02-21', 976, 3172, 1840, NULL, '16.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3055, '2025-02-21', 1094, 3173, 1841, 730, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '78.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3056, '2025-02-18', 976, 3174, 1842, NULL, '14.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3058, '2025-02-21', 1094, 3176, 1844, 730, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '77.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3059, '2025-02-21', 1094, 3177, 1845, 730, '0.3000', '0.0000', '0.0000', '1000.0000', '1000.0000', '76.7000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3062, '2025-02-21', 976, 3180, 1848, NULL, '0.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3063, '2025-02-21', 1094, 3181, 1849, 730, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '75.7000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3064, '2025-02-21', 1094, 3182, 1850, 730, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '74.7000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3065, '2025-02-21', 1072, 3183, 1851, 727, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '13.7500', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3069, '2025-01-23', 976, 3187, 1854, NULL, '13.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3070, '2025-01-25', 976, 3188, 1853, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3071, '2025-02-22', 1094, 3189, 1855, 730, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '69.7000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3072, '2025-02-22', 1017, 3190, 1856, NULL, '4.0000', '0.0000', '0.0000', '800.0000', '800.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 (3073, '2025-02-06', 1047, 3191, 1857, 725, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '72.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3074, '2025-02-06', 1047, 3192, 1794, 725, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '70.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3077, '2025-02-22', 1094, 3195, 1859, 730, '0.3000', '0.0000', '0.0000', '1000.0000', '1000.0000', '69.4000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3078, '2025-02-22', 982, 3196, 1860, 735, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '9.0000', 1, 0, NULL, 95, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3079, '2025-02-22', 976, 3197, 1860, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3081, '2025-02-22', 1072, 3199, 1862, 727, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '12.7500', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3082, '2025-02-22', 1094, 3200, 1863, 730, '0.5000', '0.0000', '0.0000', '1000.0000', '1000.0000', '68.9000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3085, '2025-02-22', 1031, 3203, 1866, 716, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '24.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3086, '2025-02-22', 1047, 3204, 1866, 725, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '65.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3087, '2025-02-01', 976, 3206, 1852, NULL, '14.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3088, '2025-01-29', 976, 3207, 1787, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3104, '2025-02-03', 976, 3224, 1880, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3105, '2025-01-23', 1128, 3225, 1879, NULL, '8.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3107, '2025-02-06', 1047, 3227, 1881, 725, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '55.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3109, '2025-02-11', 976, 3229, 1883, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3110, '2025-02-11', 1012, 3230, 1883, NULL, '1.0000', '0.0000', '0.0000', '2000.0000', '2000.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 (3111, '2025-02-24', 976, 3231, 1884, NULL, '80.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-80.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3119, '2025-02-24', 1072, 3239, 1888, 727, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '12.6250', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3120, '2025-02-24', 1038, 3240, 1888, 724, '0.0550', '0.0000', '0.0000', '700.0000', '700.0000', '25.9450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3121, '2025-02-24', 1072, 3241, 1888, 727, '0.0600', '0.0000', '0.0000', '800.0000', '800.0000', '12.6900', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3123, '2025-02-24', 1094, 3243, 1890, 730, '10.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '58.9000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3125, '2025-02-03', 976, 3245, 1891, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3128, '2025-01-28', 976, 3248, 1893, NULL, '11.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3129, '2025-01-30', 976, 3249, 1892, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3134, '2025-02-24', 1038, 3254, 1898, 724, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '24.9450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3135, '2025-02-24', 1072, 3255, 1898, 727, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '9.5650', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3136, '2025-02-24', 1094, 3256, 1898, 730, '0.3000', '0.0000', '0.0000', '1000.0000', '1000.0000', '58.6000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3137, '2025-02-24', 1017, 3257, 1898, NULL, '0.5000', '0.0000', '0.0000', '800.0000', '800.0000', '-0.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3138, '2025-02-24', 1072, 3258, 1899, 727, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '9.3150', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3139, '2025-02-24', 1072, 3259, 1900, 727, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '8.3150', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3140, '2025-02-24', 1038, 3260, 1900, 724, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '22.9450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3142, '2025-02-24', 1038, 3262, 1902, 724, '0.1000', '0.0000', '0.0000', '700.0000', '700.0000', '22.8450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3143, '2025-02-24', 1094, 3263, 1903, 730, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '55.6000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3144, '1970-01-01', 961, 3264, 1904, 734, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '13.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3149, '2025-02-25', 976, 3269, 1909, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3152, '2025-02-25', 976, 3272, 1912, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3153, '2025-02-25', 976, 3273, 1913, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3155, '2025-02-25', 976, 3275, 1915, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3157, '2025-02-25', 976, 3277, 1917, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3159, '2025-02-25', 976, 3279, 1919, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3165, '2025-02-03', 976, 3285, 1921, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3166, '2025-02-03', 1094, 3286, 1921, 730, '20.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '15.6000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3167, '2025-01-27', 976, 3287, 1920, NULL, '26.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-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 (3168, '2025-01-27', 1038, 3288, 1920, 724, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '16.8450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3169, '2025-01-27', 1072, 3289, 1920, 727, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '6.3150', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3171, '2025-02-17', 982, 3291, 1922, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3174, '2025-02-03', 976, 3294, 1924, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3175, '2025-02-03', 976, 3295, 1923, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3176, '2025-02-25', 976, 3296, 1925, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3177, '2025-02-25', 1115, 3297, 1926, NULL, '4.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3178, '2025-02-25', 1115, 3298, 1927, NULL, '4.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3179, '2025-02-25', 976, 3299, 1927, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3180, '2025-02-25', 1112, 3300, 1927, NULL, '4.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3182, '2025-02-25', 976, 3303, 1929, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3185, '2025-01-30', 976, 3307, 1931, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3186, '2025-01-13', 976, 3308, 1932, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3190, '2025-02-04', 1031, 3312, 1935, 716, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '15.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3199, '2025-02-25', 1072, 3321, 1943, 727, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '6.1900', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3200, '1970-01-01', 1031, 3322, 1944, 716, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '9.9500', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3201, '1970-01-01', 1072, 3323, 1944, 727, '0.0625', '0.0000', '0.0000', '800.0000', '800.0000', '6.1275', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3202, '2025-02-24', 976, 3324, 1945, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3203, '2025-02-24', 1072, 3325, 1945, 727, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '4.1275', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3204, '2025-02-24', 1038, 3326, 1945, 724, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '14.8450', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3205, '2025-02-24', 1017, 3327, 1945, NULL, '3.0000', '0.0000', '0.0000', '800.0000', '800.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 (3206, '2025-02-24', 976, 3328, 1732, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3207, '2025-02-24', 976, 3329, 1946, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3209, '2025-02-26', 976, 3331, 1948, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3211, '2025-02-26', 976, 3334, 1950, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3214, '2025-02-26', 976, 3337, 1953, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3215, '2025-02-26', 976, 3338, 1954, NULL, '0.2632', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.2632', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3216, '2025-02-26', 976, 3339, 1955, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3217, '2025-02-26', 1072, 3340, 1955, 739, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '37.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3220, '2025-02-26', 1017, 3343, 1958, 738, '4.0000', '0.0000', '0.0000', '800.0000', '800.0000', '16.5000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3221, '2025-02-26', 1072, 3344, 1959, 739, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '16.8750', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3222, '2025-02-26', 1072, 3345, 1960, 739, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '14.8750', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3225, '2025-02-26', 976, 3348, 1962, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3226, '2025-02-26', 1072, 3349, 1963, 739, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '14.6250', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3227, '2025-02-26', 1017, 3350, 1964, 738, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '15.5000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3228, '2025-02-26', 1017, 3351, 1965, 738, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '14.5000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3230, '2025-02-26', 1038, 3355, 1967, 724, '0.2800', '0.0000', '0.0000', '700.0000', '700.0000', '14.5650', 1, 0, NULL, 84, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3231, '2025-02-26', 1104, 3356, 1968, NULL, '4.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3238, '2025-02-27', 976, 3363, 1974, NULL, '40.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-40.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3239, '2025-02-27', 982, 3364, 1975, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3240, '2025-02-27', 976, 3365, 1976, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3241, '2025-02-27', 1017, 3366, 1977, NULL, '10.0000', '0.0000', '0.0000', '800.0000', '800.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 (3242, '2025-02-27', 1072, 3367, 1977, 739, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '11.6250', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3243, '2025-02-27', 1094, 3368, 1977, 730, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '10.6000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3246, '2025-02-05', 976, 3371, 1980, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3249, '2025-01-29', 1130, 3376, 1767, NULL, '6.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3250, '2025-01-29', 976, 3377, 1767, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3251, '2025-01-31', 976, 3378, 1979, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3252, '2025-01-30', 976, 3379, 1981, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3253, '2025-01-21', 1115, 3380, 1757, NULL, '4.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3254, '2025-01-28', 976, 3381, 1978, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3255, '2025-01-30', 976, 3382, 1906, NULL, '43.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-43.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3256, '2025-01-24', 1118, 3385, 1761, NULL, '32.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3257, '2025-02-03', 976, 3386, 1983, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3258, '2025-02-03', 976, 3387, 1984, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3259, '2025-02-27', 1094, 3388, 1985, 730, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '5.6000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3260, '2025-02-27', 1072, 3389, 1985, 739, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '10.6250', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3261, '2025-02-27', 1072, 3390, 1986, 739, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '10.3750', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3262, '2025-02-27', 1094, 3391, 1986, 730, '0.3000', '0.0000', '0.0000', '1000.0000', '1000.0000', '5.3000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3263, '2025-02-27', 976, 3392, 1986, NULL, '0.1184', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.1184', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3264, '2025-02-27', 1031, 3393, 1987, 742, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '27.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3271, '2025-02-28', 976, 3400, 1993, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3272, '2025-02-28', 1047, 3401, 1994, 725, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '33.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3274, '2025-02-20', 1143, 3403, 1996, NULL, '12.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3275, '2025-02-20', 1143, 3404, 1996, NULL, '12.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3276, '2025-02-20', 1115, 3405, 1997, NULL, '11.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3277, '2025-02-24', 1103, 3406, 1998, NULL, '5.5000', '0.0000', '0.0000', '700.0000', '700.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3283, '2025-02-11', 976, 3412, 2004, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3286, '2025-02-12', 1012, 3415, 2007, 756, '1.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3287, '2025-02-12', 976, 3416, 2007, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3289, '2025-02-12', 1038, 3418, 2009, 758, '4.0000', '0.0000', '0.0000', '700.0000', '700.0000', '56.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3293, '2025-02-12', 976, 3422, 2013, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3294, '2025-02-13', 976, 3423, 2014, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3300, '2025-02-13', 976, 3429, 2018, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3302, '2025-02-13', 961, 3432, 2020, 743, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '23.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3303, '2025-02-13', 976, 3433, 2020, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3304, '2025-02-13', 976, 3434, 2021, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3306, '2025-02-14', 976, 3436, 2023, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3307, '2025-02-14', 976, 3437, 2024, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3308, '2025-02-14', 976, 3438, 2025, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3311, '2025-02-14', 976, 3441, 2028, NULL, '40.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-40.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3314, '2025-02-15', 982, 3444, 2030, 760, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '13.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3315, '2025-02-15', 1031, 3445, 2031, 742, '8.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '11.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3316, '2025-02-17', 976, 3446, 2032, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3319, '2025-02-17', 976, 3449, 2035, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3323, '2025-02-17', 976, 3453, 2039, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3327, '2025-02-17', 1031, 3457, 2041, 742, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3328, '2025-02-17', 1031, 3457, 2041, 716, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '8.9500', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3330, '2025-02-17', 976, 3459, 2043, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3331, '2025-02-17', 976, 3460, 2044, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3339, '2025-02-21', 976, 3468, 1837, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3340, '2025-03-03', 976, 3469, 2052, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3341, '2025-03-03', 976, 3470, 2053, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3342, '2025-03-03', 1094, 3471, 2054, 759, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '36.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3343, '2025-02-01', 976, 3473, 2055, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3344, '2025-02-01', 976, 3474, 2056, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3345, '2025-03-03', 1094, 3475, 2057, 759, '4.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '32.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3346, '2025-03-03', 1094, 3476, 2057, 759, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '34.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3349, '2025-03-03', 1094, 3481, 2060, 759, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '29.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3351, '2025-02-11', 976, 3484, 1999, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3352, '2025-02-18', 976, 3485, 1734, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3353, '2025-02-06', 976, 3486, 1846, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3354, '2025-02-07', 976, 3487, 1801, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3355, '2025-03-03', 976, 3488, 2062, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3357, '2025-02-10', 976, 3490, 1785, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3358, '2025-02-13', 976, 3491, 2016, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3359, '2025-02-13', 1038, 3492, 2016, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '54.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3360, '2025-02-13', 1072, 3493, 2016, 739, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '8.3750', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3361, '2025-02-10', 976, 3494, 1805, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3364, '2025-02-10', 976, 3499, 1807, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3365, '2025-03-03', 1094, 3500, 2066, 759, '0.1000', '0.0000', '0.0000', '1000.0000', '1000.0000', '28.9000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3366, '2025-03-03', 1072, 3501, 2066, 739, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '8.1250', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3367, '2025-02-11', 976, 3502, 2001, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3369, '2025-03-04', 976, 3505, 2068, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3370, '2025-03-04', 976, 3506, 2069, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3373, '2025-03-04', 1038, 3510, 2072, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '53.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3374, '2025-03-04', 1094, 3511, 2073, 759, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '23.9000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3375, '2025-03-04', 1094, 3512, 2074, 759, '4.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '19.9000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3379, '2025-03-06', 1012, 3518, 2078, 756, '1.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', '13.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3381, '2025-03-06', 976, 3520, 2080, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3382, '2025-03-06', 961, 3521, 2080, 743, '8.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '15.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3385, '2025-03-05', 1094, 3524, 2083, 759, '19.9000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3386, '2025-03-05', 1094, 3524, 2083, 730, '5.3000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3387, '2025-03-05', 1094, 3524, 2083, 728, '4.8000', '0.0000', '0.0000', '1000.0000', '1000.0000', '63.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3392, '2025-03-05', 976, 3528, 2087, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3393, '2025-03-05', 1047, 3529, 2088, 722, '4.0000', '0.0000', '0.0000', '800.0000', '800.0000', '7.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3394, '2025-03-05', 1031, 3530, 2089, 716, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '4.9500', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3395, '2025-02-25', 982, 3531, 1914, 760, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '6.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3396, '2025-02-13', 976, 3532, 2019, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3397, '2025-03-01', 982, 3533, 2047, 760, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '4.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3398, '2025-02-25', 1031, 3534, 1908, 716, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '1.9500', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3399, '2025-02-12', 1031, 3535, 2012, 716, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.9500', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3400, '2025-02-12', 982, 3537, 2008, 760, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3401, '2025-02-12', 976, 3538, 2005, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3402, '2025-02-11', 976, 3539, 2003, NULL, '11.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3403, '2025-02-28', 976, 3540, 2000, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3404, '2025-02-18', 1038, 3541, 1707, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '52.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3406, '2025-02-18', 982, 3545, 1718, NULL, '5.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3407, '2025-02-19', 982, 3546, 1772, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3408, '2025-02-19', 982, 3547, 1777, NULL, '11.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3409, '2025-02-19', 982, 3548, 1782, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3410, '2025-02-21', 1094, 3549, 1834, 728, '8.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '55.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3411, '2025-02-24', 982, 3551, 1901, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3412, '2025-02-24', 1072, 3552, 1889, 739, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '3.1250', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3413, '2025-02-25', 1038, 3553, 1911, 758, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '50.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3414, '2025-01-23', 976, 3554, 1827, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3415, '2025-02-26', 1072, 3555, 1957, 739, '3.1250', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3416, '2025-02-26', 1072, 3555, 1957, 727, '4.1275', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3417, '2025-02-26', 1072, 3555, 1957, 751, '12.7475', '0.0000', '0.0000', '800.0000', '800.0000', '27.2525', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3418, '2025-02-28', 1094, 3556, 2091, 728, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '52.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3419, '2025-02-28', 1094, 3557, 2092, 728, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '49.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3420, '2025-02-28', 1094, 3558, 2093, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '47.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3421, '2025-01-30', 1099, 3559, 1768, NULL, '6.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3422, '2025-02-01', 976, 3560, 2065, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3423, '2025-03-03', 1094, 3561, 2094, 728, '4.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '43.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3425, '2025-03-07', 976, 3563, 2096, NULL, '40.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-40.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3428, '2025-03-07', 976, 3566, 2099, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3433, '2025-03-07', 976, 3571, 2104, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3435, '2025-02-18', 1017, 3574, 1726, 761, '55.7500', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3436, '2025-02-18', 1017, 3574, 1726, 754, '16.2500', '0.0000', '0.0000', '800.0000', '800.0000', '41.7500', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3437, '2025-03-07', 976, 3575, 2106, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3438, '2025-03-05', 1017, 3576, 2107, 754, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '38.7500', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3440, '2025-01-28', 976, 3578, 2108, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3441, '2025-03-05', 1072, 3581, 2109, 751, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '27.0025', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3442, '2025-03-07', 1094, 3582, 2110, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '41.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3443, '2025-03-06', 1118, 3583, 2111, NULL, '12.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3444, '2025-03-07', 1072, 3584, 2112, 751, '0.7500', '0.0000', '0.0000', '800.0000', '800.0000', '26.2525', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3445, '2025-03-07', 1017, 3585, 2112, 754, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '38.5000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3446, '2025-03-07', 1125, 3586, 2113, NULL, '1.5000', '0.0000', '0.0000', '700.0000', '700.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3447, '2025-03-07', 1124, 3587, 2113, NULL, '5.5000', '0.0000', '0.0000', '700.0000', '700.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3448, '2025-02-06', 976, 3590, 1795, NULL, '4.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-4.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3449, '2025-02-12', 1047, 3591, 2006, 722, '7.0000', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 82, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3450, '2025-02-12', 1047, 3591, 2006, 733, '20.0000', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3451, '2025-02-12', 1047, 3591, 2006, 715, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '25.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3452, '2025-02-12', 1038, 3592, 2006, 758, '0.5000', '0.0000', '0.0000', '700.0000', '700.0000', '49.5000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3453, '2025-02-12', 1072, 3593, 2006, 751, '0.5620', '0.0000', '0.0000', '800.0000', '800.0000', '25.6905', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3454, '2025-02-17', 976, 3594, 2042, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3456, '2025-03-10', 976, 3596, 2115, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3457, '2025-03-10', 976, 3597, 2116, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3458, '2025-02-17', 976, 3598, 1843, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3459, '2025-02-07', 976, 3599, 1796, NULL, '27.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-27.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3460, '2025-03-10', 1038, 3600, 2117, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '48.5000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3461, '2025-02-20', 1012, 3601, 1817, 756, '6.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3462, '2025-02-13', 976, 3602, 2015, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3467, '2025-03-10', 976, 3606, 2121, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3468, '2025-03-10', 1047, 3607, 2122, 715, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '23.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3469, '2025-03-10', 976, 3608, 2123, NULL, '11.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3470, '2025-03-10', 976, 3609, 2124, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3471, '2025-03-10', 976, 3611, 2125, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3472, '2025-02-19', 976, 3612, 2126, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3474, '2025-03-10', 1094, 3614, 2127, 728, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '36.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3475, '2025-02-28', 976, 3615, 2128, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3476, '2025-03-10', 976, 3616, 2129, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3477, '2025-02-21', 976, 3617, 1836, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3479, '2025-02-10', 1115, 3619, 1749, NULL, '11.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3481, '2025-02-14', 976, 3621, 2022, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3482, '2025-02-17', 976, 3622, 2037, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3483, '2025-02-17', 976, 3625, 2040, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3484, '2025-02-17', 982, 3626, 2040, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3485, '2025-02-10', 1115, 3627, 1750, NULL, '11.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3486, '2025-02-07', 1137, 3628, 1747, NULL, '3.0000', '0.0000', '0.0000', '700.0000', '700.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3487, '2025-02-17', 976, 3629, 2045, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3488, '2025-02-17', 976, 3630, 1934, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3489, '2025-02-11', 976, 3631, 2002, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3490, '2025-02-14', 1031, 3632, 2026, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3493, '2025-02-12', 1031, 3635, 2010, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3495, '2025-03-10', 1038, 3637, 2131, 758, '0.5142', '0.0000', '0.0000', '700.0000', '700.0000', '47.9858', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3496, '2025-03-10', 1072, 3638, 2131, 751, '0.7500', '0.0000', '0.0000', '800.0000', '800.0000', '24.9405', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3497, '2025-03-05', 1072, 3639, 2082, 751, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '21.9405', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3498, '2025-03-07', 1094, 3640, 2130, 728, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '26.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3502, '2025-03-08', 976, 3648, 2136, NULL, '1.0540', '0.0000', '0.0000', '1900.0000', '1900.0000', '-1.0540', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3505, '2025-03-11', 1142, 3651, 2138, 763, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '54.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3506, '2025-03-11', 1031, 3652, 2139, NULL, '5.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3507, '2025-03-11', 961, 3653, 2139, 743, '7.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3508, '2025-03-11', 961, 3653, 2139, 734, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '9.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3509, '2025-03-11', 976, 3654, 2140, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3510, '2025-01-28', 1132, 3656, 1764, NULL, '8.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3511, '2025-02-07', 1115, 3657, 1754, NULL, '11.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3512, '2025-03-11', 1072, 3658, 2141, 751, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '21.6905', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3513, '2025-01-31', 1111, 3659, 1792, NULL, '3.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3514, '2025-03-11', 1017, 3660, 2142, 754, '0.5750', '0.0000', '0.0000', '800.0000', '800.0000', '37.9250', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3515, '2025-03-11', 1047, 3661, 2143, 715, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '22.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3516, '2025-02-12', 1112, 3665, 1752, NULL, '4.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3520, '2025-03-11', 1094, 3670, 2144, 728, '4.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '17.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3521, '2025-03-04', 976, 3671, 2075, NULL, '60.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-60.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3522, '2025-02-18', 976, 3672, 1716, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3524, '2025-03-01', 1047, 3674, 2145, 715, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '12.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3525, '2025-03-12', 1017, 3675, 2146, 754, '37.9250', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3526, '2025-03-12', 1017, 3675, 2146, 748, '7.0750', '0.0000', '0.0000', '800.0000', '800.0000', '6.4250', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3527, '2025-03-12', 976, 3676, 2147, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3528, '2025-03-12', 976, 3677, 2148, NULL, '60.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-60.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3529, '2025-02-18', 976, 3678, 1714, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3530, '2025-02-25', 1031, 3679, 1938, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3531, '2025-03-12', 976, 3680, 2149, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3532, '2025-03-12', 976, 3681, 2150, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3535, '2025-03-05', 1109, 3684, 2152, NULL, '5.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3536, '2025-03-07', 1126, 3687, 2153, NULL, '21.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3537, '2025-03-07', 1104, 3688, 2154, NULL, '5.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3538, '2025-03-13', 1128, 3689, 2155, NULL, '19.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3539, '2025-03-06', 1118, 3690, 2156, NULL, '12.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3540, '2025-03-07', 1109, 3691, 2157, NULL, '5.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3541, '2025-02-04', 976, 3692, 2077, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3542, '2025-01-24', 976, 3693, 1725, NULL, '45.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-45.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3543, '2025-03-13', 976, 3694, 2158, NULL, '2.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-2.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3545, '2025-03-13', 1047, 3696, 2160, 715, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '11.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3546, '2025-03-13', 982, 3697, 2161, NULL, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3547, '2025-03-13', 976, 3698, 2162, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3548, '2025-03-13', 1094, 3699, 2163, 728, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '12.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3549, '2025-03-13', 976, 3700, 2164, NULL, '23.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-23.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3550, '2025-03-13', 1094, 3701, 2165, 728, '9.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '3.4500', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3551, '2025-02-20', 976, 3702, 1824, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3552, '2025-03-13', 1072, 3704, 2166, 751, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '21.5655', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3553, '2025-03-13', 1038, 3705, 2166, 758, '0.2143', '0.0000', '0.0000', '700.0000', '700.0000', '47.7715', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3554, '2025-03-13', 976, 3706, 2167, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3555, '2025-02-05', 976, 3709, 1705, NULL, '38.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-38.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3556, '2025-02-05', 1012, 3710, 1705, 756, '7.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3557, '2025-02-05', 982, 3711, 1705, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3558, '2025-03-14', 976, 3712, 2168, NULL, '16.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3559, '2025-03-13', 1012, 3713, 2169, NULL, '4.0000', '0.0000', '0.0000', '2000.0000', '2000.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 (3561, '2025-03-14', 976, 3715, 2171, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3562, '2025-03-14', 1047, 3716, 2172, 715, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '8.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3567, '2025-02-20', 976, 3721, 1820, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3568, '2025-02-19', 976, 3722, 1773, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3570, '2025-03-14', 1047, 3724, 2176, 715, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '6.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3573, '2025-03-14', 1038, 3727, 2177, 758, '0.0780', '0.0000', '0.0000', '700.0000', '700.0000', '47.6375', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3574, '2025-03-14', 1072, 3728, 2177, 751, '0.0680', '0.0000', '0.0000', '800.0000', '800.0000', '21.4975', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3575, '2025-03-14', 1038, 3729, 2174, 758, '0.0560', '0.0000', '0.0000', '700.0000', '700.0000', '47.6375', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3577, '2025-03-14', 1135, 3731, 2178, NULL, '19.5000', '0.0000', '0.0000', '700.0000', '700.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3578, '2025-03-14', 1038, 3732, 2178, 758, '0.2920', '0.0000', '0.0000', '700.0000', '700.0000', '47.3455', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3579, '2025-03-14', 1072, 3733, 2178, 751, '0.3120', '0.0000', '0.0000', '800.0000', '800.0000', '21.1855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3580, '2025-03-15', 1047, 3734, 2179, 715, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '5.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3581, '2025-03-15', 982, 3735, 2180, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3582, '2025-03-15', 1094, 3736, 2181, 728, '3.4500', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3583, '2025-03-15', 1094, 3736, 2181, 709, '4.5500', '0.0000', '0.0000', '1000.0000', '1000.0000', '9.4500', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3584, '2025-03-15', 1047, 3737, 2182, 715, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '3.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3586, '2025-03-17', 1127, 3739, 2183, NULL, '12.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3587, '2025-03-17', 976, 3740, 2184, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3588, '2025-02-22', 976, 3742, 1861, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3589, '2025-02-17', 1031, 3743, 2038, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3590, '2025-02-04', 976, 3744, 1697, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3595, '2025-02-28', 1047, 3747, 1990, 715, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3596, '2025-02-28', 1047, 3747, 1990, NULL, '11.5000', '0.0000', '0.0000', '800.0000', '800.0000', '-11.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3597, '2025-03-17', 976, 3748, 2185, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3598, '2025-03-17', 1094, 3749, 2186, 709, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '7.4500', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3599, '2025-03-17', 1094, 3751, 2187, 709, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '5.4500', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3600, '2025-03-17', 976, 3752, 2188, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3602, '2025-03-17', 976, 3754, 2190, NULL, '1.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-1.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3603, '2025-03-17', 1047, 3755, 2191, NULL, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '-0.1250', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3604, '2025-03-17', 1031, 3756, 2191, NULL, '0.0750', '0.0000', '0.0000', '1300.0000', '1300.0000', '-0.0750', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3605, '2025-03-17', 976, 3757, 2191, NULL, '0.0500', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.0500', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3606, '2025-03-17', 1057, 3758, 2191, 718, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '9.8750', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3607, '2025-03-17', 1094, 3759, 2192, 709, '5.4500', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3608, '2025-03-17', 1094, 3759, 2192, 708, '1.5500', '0.0000', '0.0000', '1000.0000', '1000.0000', '134.4500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3609, '2025-02-19', 976, 3760, 2193, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3610, '2025-03-17', 961, 3761, 2194, 734, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '7.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3611, '2025-03-17', 1072, 3762, 2195, 751, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '20.1855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3612, '2025-03-18', 976, 3763, 2196, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3613, '2025-03-18', 976, 3764, 2197, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3614, '2025-03-18', 976, 3765, 2198, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3616, '2025-03-18', 1094, 3767, 2200, 776, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '78.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3617, '2025-03-18', 961, 3768, 2201, 766, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '23.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3618, '2025-03-18', 976, 3769, 2202, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3619, '2025-03-18', 976, 3770, 2203, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3620, '2025-03-18', 1094, 3771, 2204, 776, '20.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '58.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3622, '2025-03-18', 976, 3773, 2205, NULL, '0.0520', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.0520', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3623, '2025-02-25', 976, 3775, 1918, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3624, '2025-03-18', 1094, 3776, 2206, 776, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '56.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3625, '2025-03-18', 1038, 3777, 2207, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '46.3455', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3626, '2025-03-18', 1094, 3778, 2207, 776, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '55.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3627, '2025-02-18', 976, 3780, 1708, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3631, '2025-03-18', 1038, 3784, 2208, 758, '0.1275', '0.0000', '0.0000', '700.0000', '700.0000', '46.2180', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3632, '2025-03-18', 1047, 3785, 2208, 780, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '30.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3633, '2025-03-18', 1057, 3786, 2208, 718, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '9.6250', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3634, '2025-02-15', 1094, 3787, 2209, 776, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '54.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3635, '2025-02-15', 1017, 3788, 2209, 775, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '52.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3636, '2025-02-15', 976, 3789, 2209, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3637, '2025-02-26', 976, 3790, 1947, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3638, '2025-02-19', 976, 3791, 1775, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3639, '2025-02-01', 976, 3795, 2210, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3640, '2025-02-28', 976, 3796, 1992, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3641, '2025-02-05', 1047, 3797, 1966, 780, '7.0000', '0.0000', '0.0000', '800.0000', '800.0000', '23.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3642, '2025-02-05', 1038, 3798, 1966, 758, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '44.2180', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3643, '2025-02-05', 976, 3799, 1829, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3644, '2025-03-19', 976, 3800, 2211, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3645, '2025-03-19', 1094, 3801, 2212, 776, '25.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '29.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3646, '2025-03-19', 976, 3802, 2213, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3647, '2025-03-19', 976, 3803, 2214, NULL, '75.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-75.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3648, '2025-03-19', 1094, 3804, 2215, 776, '7.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '22.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3649, '2025-03-19', 982, 3805, 2216, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3650, '2025-03-19', 976, 3806, 2216, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3651, '2025-03-19', 982, 3807, 2217, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3652, '2025-03-19', 976, 3808, 2218, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3653, '2025-03-20', 1094, 3809, 2219, 776, '7.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '15.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3654, '2025-03-20', 976, 3810, 2220, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3655, '2025-03-20', 976, 3811, 2221, NULL, '40.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-40.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3656, '2025-03-20', 982, 3812, 2222, NULL, '1.5000', '0.0000', '0.0000', '1300.0000', '1300.0000', '-1.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3657, '2025-03-20', 1031, 3813, 2223, 767, '1.3750', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3658, '2025-03-20', 1031, 3813, 2223, NULL, '0.6250', '0.0000', '0.0000', '1300.0000', '1300.0000', '-0.6250', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3659, '2025-03-20', 1031, 3814, 2224, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3660, '2025-03-20', 1094, 3815, 2225, 776, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '13.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3661, '2025-03-20', 976, 3816, 2226, NULL, '14.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3662, '2025-03-20', 976, 3817, 2227, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3663, '2025-03-20', 1094, 3818, 2228, 776, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '12.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3664, '2025-03-20', 1031, 3819, 2229, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3665, '2025-03-21', 961, 3820, 2230, 766, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '21.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3666, '2025-03-21', 1031, 3821, 2231, NULL, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3668, '2025-03-21', 976, 3823, 2233, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3669, '2025-03-21', 1094, 3824, 2234, 776, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3670, '2025-03-19', 1047, 3825, 2235, 780, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '18.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3671, '2025-03-21', 1031, 3826, 2236, NULL, '1.0250', '0.0000', '0.0000', '1300.0000', '1300.0000', '-1.0250', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3672, '2025-03-05', 976, 3827, 2084, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3673, '2025-03-21', 976, 3828, 2237, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3674, '2025-03-21', 976, 3829, 2238, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3675, '2025-03-22', 976, 3830, 2239, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3676, '2025-03-22', 976, 3831, 2240, NULL, '11.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3677, '2025-03-22', 1094, 3832, 2241, 776, '7.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3678, '2025-03-22', 1094, 3832, 2241, 770, '8.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '10.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3679, '2025-03-21', 961, 3833, 2242, 766, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '18.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3680, '2025-03-22', 1094, 3834, 2243, 770, '8.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3681, '2025-03-24', 1094, 3835, 2244, 770, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3682, '2025-03-24', 1094, 3835, 2244, 765, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '19.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3683, '2025-03-24', 1031, 3836, 2245, NULL, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3684, '2025-03-24', 976, 3837, 2245, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3685, '2025-03-24', 976, 3838, 2246, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3686, '2025-03-24', 976, 3839, 2247, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3687, '2025-03-24', 961, 3840, 2248, 766, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '16.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3688, '2025-03-24', 1094, 3841, 2249, 765, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '14.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3689, '2025-03-24', 976, 3842, 2250, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3690, '2025-03-25', 976, 3843, 2251, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3691, '2025-03-25', 1012, 3844, 2251, NULL, '9.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3692, '2025-03-24', 1031, 3845, 2252, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3693, '2025-03-24', 1094, 3846, 2253, 765, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '12.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3694, '2025-03-24', 1094, 3847, 2254, 765, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '10.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3695, '2025-03-24', 961, 3848, 2255, 766, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '15.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3696, '2025-03-25', 976, 3849, 2256, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3697, '2025-03-25', 1094, 3850, 2257, 765, '10.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 116, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3698, '2025-03-25', 1094, 3850, 2257, 708, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '131.4500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3699, '2025-03-25', 961, 3851, 2258, 766, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '12.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3700, '2025-03-25', 961, 3852, 2259, 766, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '10.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3702, '2025-03-14', 976, 3854, 2261, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3703, '2025-03-17', 976, 3855, 2189, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3704, '2025-03-18', 961, 3856, 2199, 766, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '7.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3705, '2025-03-08', 976, 3857, 2133, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3706, '2025-03-08', 1094, 3858, 2134, 708, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '96.4500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3707, '2025-03-08', 1031, 3859, 2135, NULL, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3708, '2025-03-10', 1031, 3860, 2120, NULL, '1.5000', '0.0000', '0.0000', '1300.0000', '1300.0000', '-1.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3709, '2025-03-11', 961, 3861, 2137, 766, '5.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '2.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3710, '2025-03-11', 1031, 3862, 2137, NULL, '5.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3711, '2025-03-06', 976, 3863, 2079, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3713, '2025-03-07', 976, 3865, 2100, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3714, '2025-03-07', 976, 3866, 2102, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3715, '2025-03-07', 976, 3867, 2103, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3717, '2025-03-07', 976, 3869, 2105, NULL, '38.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-38.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3718, '2025-03-27', 976, 3871, 2263, NULL, '18.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3719, '2025-02-06', 976, 3872, 1793, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3720, '2025-02-07', 976, 3873, 1799, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3721, '2025-02-07', 976, 3874, 2059, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3722, '2025-02-07', 976, 3875, 1802, NULL, '35.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-35.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3724, '2025-02-08', 976, 3877, 1803, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3725, '2025-02-10', 976, 3878, 1809, NULL, '13.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3726, '2025-02-10', 976, 3879, 1812, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3727, '2025-03-26', 1142, 3881, 2265, 763, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '49.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3728, '2025-03-26', 976, 3882, 2266, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3729, '2025-03-26', 976, 3883, 2267, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3730, '2025-03-26', 976, 3884, 2268, NULL, '18.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-18.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3731, '2025-03-26', 976, 3885, 2269, NULL, '16.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-16.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3732, '2025-03-26', 976, 3886, 2269, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3733, '2025-03-28', 976, 3887, 2270, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3734, '2025-03-28', 961, 3888, 2271, 766, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3735, '2025-03-28', 961, 3888, 2271, 734, '0.5000', '0.0000', '0.0000', '1300.0000', '1300.0000', '6.5000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3736, '2025-03-28', 976, 3889, 2272, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3737, '2025-03-28', 976, 3890, 2273, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3738, '2025-03-29', 976, 3891, 2274, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3739, '2025-03-29', 976, 3892, 2275, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3740, '2025-03-29', 1142, 3893, 2276, 763, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '47.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3741, '2025-03-29', 1142, 3894, 2277, 763, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '45.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3742, '2025-03-28', 961, 3896, 2278, 734, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '5.5000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3743, '2025-03-28', 1038, 3897, 2279, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '43.2180', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3744, '2025-03-28', 1072, 3898, 2279, 751, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '19.1855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3745, '2025-03-28', 1142, 3899, 2280, 763, '27.0000', '0.0000', '0.0000', '800.0000', '800.0000', '18.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3746, '2025-03-27', 1038, 3900, 2281, 758, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '41.2180', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3747, '2025-03-27', 1072, 3901, 2281, 751, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '17.1855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3748, '2025-02-17', 976, 3902, 2036, NULL, '50.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-50.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3749, '2025-03-19', 1094, 3903, 2282, 708, '1.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '95.4500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3750, '2025-03-10', 961, 3904, 2114, 734, '2.5000', '0.0000', '0.0000', '1300.0000', '1300.0000', '3.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3751, '2025-03-19', 1038, 3905, 2283, 758, '0.1810', '0.0000', '0.0000', '700.0000', '700.0000', '41.0370', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3752, '2025-03-19', 1072, 3906, 2283, 751, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '16.9355', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3753, '2025-03-19', 1072, 3907, 2284, 751, '0.0500', '0.0000', '0.0000', '800.0000', '800.0000', '16.8855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3754, '2025-03-19', 1072, 3908, 2285, 751, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '16.7605', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3755, '2025-03-19', 1047, 3909, 2286, 780, '10.0000', '0.0000', '0.0000', '800.0000', '800.0000', '8.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3756, '2025-02-27', 976, 3910, 1988, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3757, '2025-02-27', 1031, 3911, 1988, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3758, '2025-03-19', 1031, 3912, 2287, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3760, '2025-02-17', 1115, 3914, 1738, NULL, '2.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3761, '2025-03-19', 1017, 3915, 2288, 775, '2.0000', '0.0000', '0.0000', '800.0000', '800.0000', '50.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3762, '2025-03-19', 1057, 3916, 2289, 718, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '8.6250', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3763, '2025-03-19', 1072, 3917, 2290, 751, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '16.6355', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3764, '2025-03-19', 1047, 3918, 2291, 780, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '7.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3765, '2025-02-01', 1031, 3919, 2132, NULL, '4.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3766, '2025-02-17', 976, 3920, 2046, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3767, '2025-03-20', 1017, 3921, 2292, 775, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '49.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3768, '2025-03-20', 1144, 3922, 2293, NULL, '12.0000', '0.0000', '0.0000', '2100.0000', '2100.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3769, '2025-03-20', 976, 3923, 2294, NULL, '0.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3770, '2025-03-20', 976, 3924, 2295, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3771, '2025-02-18', 1126, 3925, 1706, NULL, '14.5000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3772, '2025-03-20', 1017, 3926, 2296, 775, '4.0000', '0.0000', '0.0000', '800.0000', '800.0000', '45.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3773, '2025-03-20', 1017, 3927, 2297, 775, '3.0000', '0.0000', '0.0000', '800.0000', '800.0000', '42.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3774, '1970-01-01', 1094, 3928, 2298, 708, '1.2000', '0.0000', '0.0000', '1000.0000', '1000.0000', '94.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3776, '2025-02-28', 976, 3930, 1991, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3778, '2025-03-19', 1047, 3932, 2299, 780, '7.0000', '0.0000', '0.0000', '800.0000', '800.0000', '0.2500', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3779, '2025-03-04', 1031, 3933, 2071, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3780, '2025-03-21', 1094, 3934, 2300, 708, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '91.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3781, '2024-12-19', 1106, 3935, 2301, NULL, '120.0000', '0.0000', '0.0000', '20.0000', '20.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3782, '2025-03-21', 1038, 3936, 2302, 758, '0.2500', '0.0000', '0.0000', '700.0000', '700.0000', '40.7870', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3783, '2025-03-21', 1038, 3937, 2303, 758, '0.2950', '0.0000', '0.0000', '700.0000', '700.0000', '40.4920', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3784, '2025-03-21', 1047, 3938, 2304, 780, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3785, '2025-03-21', 1047, 3938, 2304, 780, '0.2500', '0.0000', '0.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3786, '2025-03-21', 1047, 3938, 2304, NULL, '2.7500', '0.0000', '0.0000', '800.0000', '800.0000', '-2.7500', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3787, '2025-02-20', 976, 3939, 2305, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3788, '2025-02-20', 961, 3940, 2305, 734, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3789, '2025-02-10', 1138, 3941, 1751, NULL, '27.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3790, '2025-03-22', 1038, 3943, 2306, 758, '0.1428', '0.0000', '0.0000', '700.0000', '700.0000', '40.3492', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3791, '2025-03-22', 1038, 3944, 2307, 758, '0.2850', '0.0000', '0.0000', '700.0000', '700.0000', '40.0642', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3792, '2025-03-20', 1038, 3945, 2308, 758, '0.1440', '0.0000', '0.0000', '700.0000', '700.0000', '39.9202', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3793, '2025-03-19', 961, 3946, 2309, 717, '12.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '14.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3794, '2025-03-24', 1094, 3947, 2310, 708, '3.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '88.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3795, '2025-03-01', 976, 3948, 2048, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3796, '2025-03-24', 1094, 3950, 2311, 708, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '86.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3797, '2025-03-24', 1094, 3951, 2312, 708, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '81.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3798, '2025-03-24', 1038, 3952, 2313, 758, '0.0700', '0.0000', '0.0000', '700.0000', '700.0000', '39.8502', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3799, '2025-03-24', 1072, 3953, 2313, 751, '0.0500', '0.0000', '0.0000', '800.0000', '800.0000', '16.5855', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3801, '2025-02-22', 976, 3955, 2314, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3802, '2025-03-24', 1038, 3956, 2315, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '38.8502', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3803, '2025-03-25', 1038, 3957, 2316, 758, '0.2200', '0.0000', '0.0000', '700.0000', '700.0000', '38.6302', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3804, '2025-03-25', 961, 3958, 2317, 717, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '11.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3805, '2025-02-24', 976, 3959, 1885, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3806, '2025-02-24', 1012, 3960, 1885, NULL, '3.0000', '0.0000', '0.0000', '2000.0000', '2000.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 (3807, '2025-03-25', 976, 3961, 2318, NULL, '0.5300', '0.0000', '0.0000', '1900.0000', '1900.0000', '-0.5300', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3808, '2025-03-25', 1094, 3962, 2319, 708, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '79.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3809, '2025-03-25', 1094, 3963, 2320, 708, '16.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '63.2500', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3810, '2025-03-25', 961, 3964, 2321, 717, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '10.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3811, '2025-03-05', 976, 3965, 2081, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3812, '2025-03-25', 1038, 3966, 2322, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '37.6302', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3813, '2025-03-25', 1017, 3967, 2322, 775, '0.5000', '0.0000', '0.0000', '800.0000', '800.0000', '41.5000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3814, '2025-03-25', 1094, 3968, 2322, 708, '0.0590', '0.0000', '0.0000', '1000.0000', '1000.0000', '63.1910', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3815, '2025-03-25', 982, 3969, 2323, NULL, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3817, '2025-03-07', 976, 3971, 2324, NULL, '22.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-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 (3818, '2025-03-25', 1038, 3972, 2325, 758, '0.1380', '0.0000', '0.0000', '700.0000', '700.0000', '37.4922', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3819, '2025-03-25', 1072, 3973, 2325, 751, '0.1250', '0.0000', '0.0000', '800.0000', '800.0000', '16.4605', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3822, '2025-02-28', 976, 3976, 2326, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3825, '2025-02-18', 1145, 3979, 2327, NULL, '19.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3826, '2025-03-25', 976, 3981, 2328, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3827, '2025-03-25', 1142, 3982, 2329, 763, '6.0000', '0.0000', '0.0000', '800.0000', '800.0000', '12.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3828, '2025-03-25', 1038, 3983, 2329, 758, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '35.4922', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3829, '2025-03-25', 1038, 3984, 2329, 758, '0.8570', '0.0000', '0.0000', '700.0000', '700.0000', '36.6352', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3830, '2025-03-25', 1094, 3985, 2330, 708, '5.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '58.1910', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3831, '2025-03-01', 976, 3986, 2050, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3832, '2025-03-26', 976, 3987, 2331, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3833, '2025-03-26', 1038, 3988, 2332, 758, '2.0000', '0.0000', '0.0000', '700.0000', '700.0000', '32.6352', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3834, '2025-03-26', 1038, 3989, 2333, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '31.6352', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3835, '2025-03-26', 1072, 3990, 2333, 751, '1.0000', '0.0000', '0.0000', '800.0000', '800.0000', '15.4605', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3836, '2025-02-24', 976, 3991, 1887, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3838, '2025-03-13', 1094, 3993, 2159, 708, '4.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '54.1910', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3839, '2025-03-13', 1038, 3994, 2159, 758, '1.0000', '0.0000', '0.0000', '700.0000', '700.0000', '30.6352', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3840, '2025-03-07', 976, 3995, 2098, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3841, '2025-02-15', 976, 3996, 2029, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3842, '2025-01-30', 976, 3997, 1847, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3843, '1970-01-01', 1017, 3998, 2334, 775, '5.0000', '0.0000', '0.0000', '800.0000', '800.0000', '36.5000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3844, '2025-01-20', 976, 3999, 2335, NULL, '3.5000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-3.5000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3845, '2025-01-20', 976, 4000, 2336, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3846, '2025-01-20', 976, 4001, 2337, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3848, '2025-01-20', 976, 4003, 2338, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3849, '2025-03-20', 976, 4004, 2339, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3850, '2025-01-20', 976, 4005, 2340, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3851, '2025-02-15', 976, 4006, 2341, NULL, '19.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-19.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3852, '2025-01-21', 976, 4007, 2342, NULL, '70.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-70.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3853, '2025-02-10', 976, 4008, 1804, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3854, '2025-02-10', 976, 4009, 1806, NULL, '92.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-92.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3855, '2025-02-20', 976, 4010, 1822, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3856, '2025-02-10', 976, 4011, 1810, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3857, '2025-02-11', 976, 4012, 1813, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3858, '2025-02-11', 976, 4013, 2064, NULL, '15.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3859, '2025-02-05', 976, 4014, 2063, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3860, '2025-02-04', 961, 4015, 2343, 820, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '18.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3861, '2025-02-04', 1031, 4016, 2344, 812, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '1.8500', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3862, '2025-02-04', 961, 4017, 2345, 820, '6.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '12.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3863, '2025-02-05', 976, 4018, 1702, NULL, '17.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3864, '2025-02-05', 976, 4019, 2346, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3866, '2025-02-05', 976, 4021, 1704, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3867, '2025-02-05', 976, 4022, 2348, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3868, '2025-02-05', 1094, 4023, 2349, 817, '10.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 144, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3871, '2025-02-05', 961, 4026, 2350, 820, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '11.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3872, '2025-02-05', 982, 4027, 2350, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3875, '2025-02-07', 1111, 4030, 1748, NULL, '8.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3876, '2025-02-07', 976, 4031, 1748, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3877, '2025-02-05', 976, 4032, 2351, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3878, '2025-02-06', 976, 4033, 1720, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3879, '2025-02-06', 1031, 4034, 2352, 812, '1.8500', '0.0000', '0.0000', '1300.0000', '1300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3880, '2025-02-06', 1031, 4034, 2352, NULL, '5.1500', '0.0000', '0.0000', '1300.0000', '1300.0000', '-5.1500', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3882, '2025-02-03', 976, 4036, 2354, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3883, '2025-02-03', 961, 4037, 2354, 820, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3884, '2025-02-03', 982, 4038, 1864, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3885, '2025-02-03', 976, 4039, 1956, NULL, '17.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3886, '2025-02-04', 976, 4040, 1694, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3887, '2025-03-04', 1094, 4041, 2355, 816, '60.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3888, '2025-03-04', 1094, 4041, 2355, 808, '90.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '55.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3889, '2025-02-04', 976, 4042, 1696, NULL, '75.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-75.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3890, '2025-02-04', 976, 4043, 1933, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3891, '2025-02-04', 1031, 4044, 1933, NULL, '2.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3892, '2025-02-03', 976, 4045, 2356, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3893, '2025-02-03', 976, 4046, 2357, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3894, '2025-02-03', 1094, 4047, 2358, 808, '2.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', '53.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3895, '2025-01-22', 976, 4048, 2359, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3896, '2025-01-22', 976, 4049, 2360, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3897, '2025-01-22', 976, 4050, 2361, NULL, '20.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3898, '2025-01-23', 976, 4051, 2362, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3899, '2025-01-23', 976, 4052, 1882, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3900, '2025-01-23', 976, 4053, 2363, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3901, '2025-01-23', 976, 4054, 2364, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3902, '2025-01-23', 976, 4055, 2365, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3904, '2025-01-24', 976, 4057, 2366, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3905, '2025-01-24', 976, 4058, 2367, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3906, '2025-01-25', 976, 4059, 1778, NULL, '68.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-68.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3907, '2025-01-27', 976, 4060, 1858, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3908, '2025-01-25', 976, 4061, 2058, NULL, '60.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-60.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3909, '2025-01-27', 976, 4062, 1897, NULL, '17.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3910, '2025-01-27', 976, 4063, 2368, NULL, '7.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3911, '2025-02-17', 976, 4064, 2369, NULL, '6.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3912, '2025-01-27', 976, 4065, 2370, NULL, '14.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-14.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3914, '2025-01-28', 976, 4067, 1839, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3915, '2025-01-28', 976, 4068, 2372, NULL, '24.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-24.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3916, '2025-01-29', 976, 4070, 1894, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3917, '2025-01-30', 976, 4071, 2061, NULL, '13.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-13.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3918, '2025-01-31', 976, 4072, 2095, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3919, '2025-01-31', 976, 4073, 1928, NULL, '17.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-17.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3920, '2025-01-31', 976, 4074, 1936, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3921, '2025-01-31', 976, 4075, 1832, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3922, '2025-02-25', 1031, 4076, 1937, NULL, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3923, '2025-01-23', 1130, 4078, 1733, NULL, '6.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3925, '2025-01-30', 976, 4080, 2374, NULL, '9.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-9.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3927, '2025-01-31', 976, 4082, 2375, NULL, '11.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-11.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3928, '2025-01-31', 976, 4083, 2376, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3929, '2025-03-31', 1098, 4084, 2377, NULL, '20.0000', '0.0000', '0.0000', '650.0000', '650.0000', NULL, NULL, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3930, '2025-03-31', 976, 4085, 2378, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3931, '2025-03-31', 976, 4086, 2379, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3932, '2025-04-01', 976, 4087, 2380, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3933, '2025-04-01', 976, 4088, 2381, NULL, '30.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-30.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3934, '2025-04-01', 976, 4089, 2382, NULL, '25.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-25.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3935, '2025-04-02', 976, 4090, 2383, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3936, '2025-04-02', 976, 4091, 2384, NULL, '35.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-35.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3937, '2025-04-03', 976, 4092, 2385, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3938, '2025-04-03', 976, 4093, 2386, NULL, '4.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3939, '2025-04-03', 976, 4094, 2387, NULL, '8.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-8.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3940, '2025-03-14', 976, 4095, 2170, NULL, '12.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-12.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3941, '2025-03-07', 976, 4096, 2097, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3942, '2025-02-27', 976, 4097, 1973, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3943, '2025-03-01', 976, 4098, 2049, NULL, '5.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3946, '2025-03-07', 976, 4101, 2101, NULL, '10.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3949, '2025-02-11', 976, 4104, 1815, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3950, '2025-02-20', 976, 4105, 1821, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3951, '2025-02-22', 1031, 4107, 1865, NULL, '3.0000', '0.0000', '0.0000', '1300.0000', '1300.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 (3952, '2025-02-25', 1031, 4109, 1942, NULL, '1.0500', '0.0000', '0.0000', '1300.0000', '1300.0000', '-1.0500', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3954, '2025-02-25', 976, 4111, 1910, NULL, '1.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3955, '2025-02-27', 976, 4112, 1970, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3957, '2025-02-28', 961, 4114, 1989, 820, '1.0000', '0.0000', '0.0000', '1300.0000', '1300.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3958, '2025-02-26', 976, 4115, 1949, NULL, '3.0000', '0.0000', '0.0000', '1900.0000', '1900.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 (3959, '2025-02-10', 976, 4116, 1811, NULL, '2.0000', '0.0000', '0.0000', '1900.0000', '1900.0000', '-2.0000', 1, 1, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_currencies
#

DROP TABLE IF EXISTS `sma_currencies`;

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

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (1, 'USD', 'US Dollar', '1.0000', 0, NULL);
INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (2, 'Kes', 'Kenya Shillings', '110.0000', 1, 'KSh');


#
# TABLE STRUCTURE FOR: sma_customer_groups
#

DROP TABLE IF EXISTS `sma_customer_groups`;

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

INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (1, 'General', 0, NULL);


#
# TABLE STRUCTURE FOR: sma_date_format
#

DROP TABLE IF EXISTS `sma_date_format`;

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

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


#
# TABLE STRUCTURE FOR: sma_deliveries
#

DROP TABLE IF EXISTS `sma_deliveries`;

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

INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (2, '2024-12-30 09:44:00', 1066, 'DO0001', 'SALE0172', 'Jane', '<p>kirinyaga central   Kenya<br>Tel: 0756956728 Email:</p>', '&lt;p&gt;delivered to kangai paid 800 by bank for transport&lt;&sol;p&gt;', 'delivered', NULL, 'Maina', 'Jane', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (3, '2024-12-30 11:29:00', 1088, 'to be delivered on 2nd january 2025', 'SALE0194', 'Gichnagi', '<p>thingini mwea   <br>Tel: 0724720689 Email:</p>', '&lt;p&gt;paid 1500 through mpesa for transport to thingini&lt;&sol;p&gt;', 'delivering', NULL, '', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (4, '2024-12-31 12:33:00', 1109, 'DO0002', 'SALE0215', 'joseph', '<p>kasioni mwea   <br>Tel: 0710527135 Email:</p>', '&lt;p&gt;paid 2000 for transport to kasioni&lt;&sol;p&gt;', 'packing', NULL, 'Maina', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (5, '2025-01-06 16:09:00', 1161, 'DO0003', 'SALE0267', 'Damaris', '<p>Kirinyaga Kirinyaga   <br>Tel: 0702598643 Email:</p>', '&lt;p&gt;left a debt of 11 200&lt;&sol;p&gt;', 'packing', NULL, '', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (6, '2025-01-14 09:55:00', 1050, 'DO0004', 'SALE0156', 'muriuki', '<p>kirinyaga central   Kenya<br>Tel: 0723914489 Email:</p>', '&lt;p&gt;paid 700 transport to kangai&lt;&sol;p&gt;', 'delivering', NULL, 'Maina', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (7, '2025-01-16 16:59:00', 1130, 'DO0005', 'SALE0236', 'benson warui', '<p>kirinyaga central   Kenya<br>Tel: 0718430447 Email:</p>', '&lt;p&gt;paid 800 transport fee to karie&lt;&sol;p&gt;', 'packing', NULL, '', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (8, '2025-01-18 08:59:00', 1298, 'DO0006', 'SALE0404', 'Muchiri Crucial', '<p>Rumuruti kieni   <br>Tel: 0722175688 Email:</p>', '&lt;p&gt;11&comma;100 paid for transport&lt;&sol;p&gt;', 'packing', NULL, '', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (9, '2025-01-27 15:02:00', 1243, 'DO0007', 'SALE0349', 'naftaly muriuki', '<p>kirinyaga central   Kenya<br>Tel: 0722103605 Email:</p>', '&lt;p&gt;paid 800 to Gitooini&lt;&sol;p&gt;', 'delivered', NULL, 'Maina', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (10, '2025-01-29 16:42:00', 1198, 'DO0008', 'SALE0304', 'joseph murimi', '<p>kirinyaga central   Kenya<br>Tel: 0797178848 Email:</p>', '&lt;p&gt;paid 1200 for transport&lt;&sol;p&gt;', 'delivered', NULL, 'Maina', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (11, '2025-01-13 16:47:00', 1441, 'DO0009', 'SALE0547', 'wilson boma', '<p>Kirinyaga Kirinyaga   <br>Tel: 0721293051 Email: wil@mail.com</p>', '', 'delivered', NULL, 'boma', '', 13, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (12, '2025-02-18 11:15:00', 1639, 'DO0010', 'SALE0745', 'Peterson', '<p>kirinyaga central   Kenya<br>Tel: 0728290546 Email:</p>', '', 'delivered', NULL, '', '', 3, NULL, NULL);
INSERT INTO `sma_deliveries` (`id`, `date`, `sale_id`, `do_reference_no`, `sale_reference_no`, `customer`, `address`, `note`, `status`, `attachment`, `delivered_by`, `received_by`, `created_by`, `updated_by`, `updated_at`) VALUES (13, '2025-02-18 15:30:00', 1668, 'DO0011', 'SALE0774', 'Gatimu', '<p>kirinyaga central kenya  Kenya<br>Tel: 0703402382 Email:</p>', '', 'delivered', NULL, '', '', 3, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_deposits
#

DROP TABLE IF EXISTS `sma_deposits`;

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

#
# TABLE STRUCTURE FOR: sma_expense_categories
#

DROP TABLE IF EXISTS `sma_expense_categories`;

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

INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (1, 'Token', 'Token');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (11, 'Salaries', 'SALARIES');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (12, 'Operating Expenses', 'OPERATING EXPENSES');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (13, 'Bills', 'BILLS');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (14, 'Non Operating Expenses', 'NON OPERATING EXPENSES');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (15, 'Bill', 'Power Bill');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (16, 'Fuel', 'Fuel');
INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (17, 'Seedlings', 'Seedlings');


#
# TABLE STRUCTURE FOR: sma_expenses
#

DROP TABLE IF EXISTS `sma_expenses`;

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

INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (37, '2024-12-21 03:00:00', 'john mutugi', '1575.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (38, '2024-12-21 03:00:00', 'kplc', '1403.0000', '', '13', '0', 15, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (39, '2024-12-21 03:00:00', 'bundles', '500.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (40, '2024-12-21 03:00:00', 'labour', '21000.0000', '', '13', '0', 11, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (41, '2024-12-03 03:00:00', 'david muriuki', '1000.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (42, '2024-12-23 12:55:00', 'sugar', '280.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (43, '2024-12-21 03:00:00', 'cartons', '160.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (44, '2024-12-23 15:59:00', 'John Mugo', '500.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (45, '2024-12-23 16:01:00', 'bundles', '3500.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (46, '2024-12-23 17:32:00', 'Gacheru', '1000.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (47, '2024-12-23 09:10:00', 'credit', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (48, '2024-12-24 12:44:00', 'motorbike', '200.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (49, '2024-12-24 13:32:00', 'credit', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (50, '2024-12-23 17:15:00', 'kelvin', '1800.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (51, '2024-12-30 20:45:00', 'cartons', '190.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (52, '2024-12-30 13:25:00', 'Martin Wambugu', '1500.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (53, '2024-12-30 13:55:00', 'sugar', '280.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (54, '2024-12-30 13:50:00', 'tissue', '110.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (55, '2024-12-28 13:50:00', 'john mutugi', '855.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (56, '2024-12-28 13:55:00', 'Oscar Wepukhulu', '140.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (57, '2024-12-28 13:55:00', 'kplc', '1000.0000', '', '13', '0', 15, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (58, '2024-12-31 12:47:00', 'Kerison Kamau', '2500.0000', '', '13', '0', 11, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (59, '2024-12-31 12:52:00', 'maina', '50.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (60, '2025-01-02 14:37:00', 'jik', '2000.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (61, '2025-01-02 14:38:00', 'transport', '150.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (62, '2025-01-03 09:25:00', 'string', '100.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (63, '2025-01-03 09:45:00', 'transport', '200.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (64, '2025-01-07 16:00:00', 'ann wachira', '2000.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (65, '2025-01-07 16:01:00', 'maina', '100.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (66, '2025-01-04 09:21:00', 'kplc', '2000.0000', '', '13', '0', 1, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (67, '2025-01-04 09:22:00', 'john mutugi', '1280.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (68, '2025-01-06 09:26:00', 'maina', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (69, '2025-01-06 09:26:00', 'Eunice Muraguri', '330.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (70, '2025-01-07 09:28:00', 'maina', '100.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (71, '0000-00-00 00:00:00', 'maina', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (72, '2025-01-11 12:32:00', 'elias [change]', '750.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (73, '2025-01-11 12:32:00', 'Gabriel [change]', '800.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (74, '2025-01-11 12:35:00', 'withdrawl', '11500.0000', '', '13', '0', 11, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (75, '2025-01-11 12:36:00', 'mutugi', '1635.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (76, '2025-01-14 13:53:00', 'maina', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (77, '2025-01-14 13:53:00', 'turpentine', '300.0000', '', '13', '0', 0, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (78, '2025-01-14 13:53:00', 'simlaw seeds', '10360.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (79, '2025-01-17 09:30:00', 'peter nguu(change)', '600.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (80, '2025-01-17 09:31:00', 'dorris munene(Change)', '600.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (81, '2025-01-16 09:35:00', 'tissue', '110.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (82, '2025-01-16 09:36:00', 'Gacheru', '1000.0000', '', '13', '0', 11, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (83, '2025-01-18 09:36:00', 'kanyingi', '200.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (84, '2025-01-18 09:37:00', 'Nicholas', '100.0000', '', '13', '0', 11, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (85, '2025-01-18 14:03:00', 'maina', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (86, '2025-01-18 14:04:00', 'JM', '800.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (87, '2025-01-18 14:05:00', 'kPLC', '1000.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (88, '2025-01-18 14:05:00', 'MUTUGI', '1545.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (89, '2025-01-18 09:24:00', 'workers', '20500.0000', '', '13', '0', 11, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (90, '2025-01-21 16:48:00', 'kanyingi', '500.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (91, '2025-01-21 16:49:00', 'fundi', '1200.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (92, '2025-01-21 16:49:00', 'transport', '200.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (93, '2025-01-21 16:50:00', 'transport', '1500.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (94, '2025-01-27 15:39:00', 'sugar', '280.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (95, '2025-01-29 10:05:00', 'police', '50.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (96, '2025-01-06 10:08:00', 'maina', '30.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (97, '2025-01-09 10:10:00', 'maina', '50.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (98, '2025-01-09 10:11:00', 'Samuel Mwangi', '3000.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (99, '2025-01-10 10:13:00', 'Elias kariuki', '750.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (100, '2025-01-11 10:14:00', 'Lionel Mutali', '2100.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (101, '2025-01-15 10:17:00', 'kPLC', '2000.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (102, '2025-01-15 10:27:00', 'bundles', '1000.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (103, '2025-01-18 10:31:00', 'Lispah munene', '1000.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (104, '2025-01-18 10:32:00', 'Nancy Theuri', '28519.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (105, '2025-01-21 10:35:00', 'super chemicals', '4150.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (106, '2025-01-21 10:42:00', 'kelvin githaiga', '600.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (107, '2025-01-22 10:42:00', 'Erastus Mwangi', '2000.0000', '', '13', '0', 16, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (108, '2025-01-23 10:43:00', 'mawingu', '255.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (109, '2025-01-23 10:45:00', 'kplc', '2000.0000', '', '13', '0', 0, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (110, '2025-01-23 10:48:00', 'jm', '1600.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (111, '2025-01-24 10:58:00', 'KcB', '1800.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (112, '2025-01-25 10:58:00', 'JOSEPH MUTUGI', '1545.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (113, '2025-01-25 10:59:00', 'Double Kei', '31600.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (114, '2025-01-25 11:00:00', 'KpLC', '1000.0000', '', '13', '0', 1, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (115, '2025-01-25 11:01:00', 'withdrawl', '9000.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (116, '2025-01-31 11:11:00', 'Daniel Njuguna', '350.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (117, '2025-01-31 11:12:00', 'JM', '2400.0000', '', '13', '0', 13, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (118, '2025-01-31 11:31:00', 'transport', '300.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (119, '2025-01-31 11:32:00', 'Oscar Wepukhulu', '110.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (120, '2025-01-31 11:34:00', 'walter', '250.0000', '', '13', '0', 12, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (121, '2025-01-31 11:40:00', 'kanyingi', '300.0000', '', '13', '0', 14, 0);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (122, '2025-02-08 13:19:00', 'kplc', '2000.0000', '', '13', '0', 1, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (123, '2025-02-08 13:20:00', 'transport', '200.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (124, '2025-02-08 13:21:00', 'john mutugi', '1580.0000', '', '13', '0', 13, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (125, '2025-02-07 13:25:00', 'Mazao na Afya', '23755.0000', '', '13', '0', 12, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (126, '2025-02-07 13:27:00', 'ballosk', '1000.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (127, '2025-02-07 13:29:00', 'JM', '1850.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (128, '2025-02-07 13:31:00', 'njeri', '1460.0000', '', '13', '0', 14, 1);
INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (129, '2025-02-08 13:32:00', 'Leshau', '320.0000', '', '13', '0', 14, 1);


#
# TABLE STRUCTURE FOR: sma_gift_card_topups
#

DROP TABLE IF EXISTS `sma_gift_card_topups`;

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

#
# TABLE STRUCTURE FOR: sma_gift_cards
#

DROP TABLE IF EXISTS `sma_gift_cards`;

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

#
# TABLE STRUCTURE FOR: sma_groups
#

DROP TABLE IF EXISTS `sma_groups`;

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

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 (7, 'manager', 'Manager');


#
# TABLE STRUCTURE FOR: sma_login_attempts
#

DROP TABLE IF EXISTS `sma_login_attempts`;

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

#
# TABLE STRUCTURE FOR: sma_logs
#

DROP TABLE IF EXISTS `sma_logs`;

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

INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1, 'POS Bill is being deleted by jane (User Id: 2)', '{\"model\":{\"id\":\"3\",\"date\":\"2021-11-17 00:15:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"360.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Table 4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"15\",\"suspend_id\":\"3\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"option_id\":\"5\",\"product_type\":\"standard\",\"real_unit_price\":\"180.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"16\",\"suspend_id\":\"3\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"option_id\":\"5\",\"product_type\":\"standard\",\"real_unit_price\":\"180.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2021-11-17 00:16:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2, 'POS Bill is being deleted by jane (User Id: 2)', '{\"model\":{\"id\":\"2\",\"date\":\"2021-11-17 00:15:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"940.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Table 10\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"13\",\"suspend_id\":\"2\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"option_id\":\"5\",\"product_type\":\"standard\",\"real_unit_price\":\"180.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"14\",\"suspend_id\":\"2\",\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"option_id\":\"1\",\"product_type\":\"standard\",\"real_unit_price\":\"200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2021-11-17 00:17:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3, 'POS Bill is being deleted by jane (User Id: 2)', '{\"model\":{\"id\":\"4\",\"date\":\"2021-11-17 01:40:03\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"1120.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Table 2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"17\",\"suspend_id\":\"4\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"720.0000\",\"serial_no\":\"\",\"option_id\":\"5\",\"product_type\":\"standard\",\"real_unit_price\":\"180.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"18\",\"suspend_id\":\"4\",\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"option_id\":\"1\",\"product_type\":\"standard\",\"real_unit_price\":\"200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2021-11-17 01:44:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"3\",\"code\":\"737\",\"name\":\"FAXE 500ML\",\"unit\":\"3\",\"cost\":\"3500.0000\",\"price\":\"4500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"0877189a1a03a32e4243dcaddafc3253.jpg\",\"category_id\":\"1\",\"subcategory_id\":\"2\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":\"2\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"3\",\"brand\":\"1\",\"slug\":\"faxe-500ml\",\"featured\":null,\"weight\":\"500.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-01 13:25:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (5, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"2\",\"code\":\"PilsnerLager500ML\",\"name\":\"Pilsner Lager 500 ML\",\"unit\":\"1\",\"cost\":\"130.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"24.0000\",\"image\":\"7ba9306341e1f2840529f859e5d6a71e.jpg\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"CF6\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code25\",\"file\":null,\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"1\",\"slug\":\"pilsner-lager-500-ml\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Pro 11\",\"hide_pos\":\"0\"}}', '2022-05-01 13:25:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (6, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1\",\"code\":\"Tusker Lager 500 ML\",\"name\":\"Tusker Lager 500 ML\",\"unit\":\"1\",\"cost\":\"146.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"24.0000\",\"image\":\"tusker_lager_4_0.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"CF1\",\"cf2\":\"CF2\",\"cf3\":\"CF3\",\"cf4\":\"CF4\",\"cf5\":\"CF5\",\"cf6\":\"CF6\",\"quantity\":\"4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"327732732\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"146.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"NG01\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"1\",\"slug\":\"tusker-lager-500-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Pro 11\",\"hide_pos\":\"0\"}}', '2022-05-01 13:25:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (7, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"6\",\"date\":\"2021-11-17 01:52:11\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"180.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"180.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"4\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"180.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\":\"98b7341d299ae7ace226cabbf9a449079cd137533b01f4e2fc0e1e285b17aea6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"10\",\"sale_id\":\"6\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (8, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"5\",\"date\":\"2021-11-17 01:44:25\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.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\":\"1\",\"paid\":\"400.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\":\"dd6ae6f745137ca1a1c817414ca2c165db0a1c084cab7da8f212eef11d0fadb9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9\",\"sale_id\":\"5\",\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"1\",\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (9, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"4\",\"date\":\"2021-11-17 01:40:52\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"360.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"360.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"300.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\":\"eb8e71464bbb477c56a44899565318146600f7f6baac3b1cd87646848b4b2eaa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7\",\"sale_id\":\"4\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"8\",\"sale_id\":\"4\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (10, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"3\",\"date\":\"2021-11-17 00:17:07\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0003\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"940.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"940.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"940.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\":\"604941aa07342d5bd0fa65c854552dd0a53fda8b2a290dc9a61299887546675f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5\",\"sale_id\":\"3\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"6\",\"sale_id\":\"3\",\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"1\",\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (11, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"2\",\"date\":\"2021-11-17 00:15:59\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0002\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"360.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"360.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\":\"1\",\"paid\":\"360.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\":\"0c1b7e1eaeaf83d51368b69842cf4ca10ddbcf25b8975186919f4f903f006137\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3\",\"sale_id\":\"2\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"4\",\"sale_id\":\"2\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.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\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (12, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1\",\"date\":\"2021-11-16 23:38:39\",\"reference_no\":\"SALE\\/POS2021\\/11\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"760.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"760.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"760.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\":\"1380913ecac11c94a9621805c9cce31f087815058b8492a3eb0ce7a6d632fbb8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1\",\"sale_id\":\"1\",\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"5\",\"net_unit_price\":\"180.0000\",\"unit_price\":\"180.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"360.0000\",\"serial_no\":\"\",\"real_unit_price\":\"180.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2\",\"sale_id\":\"1\",\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"product_type\":\"standard\",\"option_id\":\"1\",\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-01 14:02:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (13, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"2\",\"reference_no\":\"12\",\"date\":\"2021-11-17 01:07:00\",\"supplier_id\":\"5\",\"supplier\":\"Muranga Distributors\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"7000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"700.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"700.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7700.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2021-11-17 01:10:55\",\"attachment\":\"0\",\"payment_term\":\"1\",\"due_date\":\"2021-11-18\",\"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\":\"4\",\"purchase_id\":\"2\",\"transfer_id\":null,\"product_id\":\"3\",\"product_code\":\"737\",\"product_name\":\"FAXE 500ML\",\"option_id\":null,\"net_unit_cost\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"700.0000\",\"tax_rate_id\":\"2\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"7700.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-11-17\",\"status\":\"received\",\"unit_cost\":\"3850.0000\",\"real_unit_cost\":\"3500.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"Crate\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3500.0000\"}]}', '2022-05-01 14:02:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (14, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1\",\"reference_no\":\"2101\",\"date\":\"2021-11-16 23:32:00\",\"supplier_id\":\"4\",\"supplier\":\"Muranga Distributors\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Tusker and Pilsner&lt;&sol;p&gt;\",\"total\":\"2760.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2760.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":\"1\",\"due_date\":\"2021-11-17\",\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1\",\"purchase_id\":\"1\",\"transfer_id\":null,\"product_id\":\"1\",\"product_code\":\"Tusker Lager 500 ML\",\"product_name\":\"Tusker Lager 500 ML\",\"option_id\":\"1\",\"net_unit_cost\":\"146.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1460.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-11-16\",\"status\":\"received\",\"unit_cost\":\"146.0000\",\"real_unit_cost\":\"146.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"146.0000\"},{\"id\":\"2\",\"purchase_id\":\"1\",\"transfer_id\":null,\"product_id\":\"2\",\"product_code\":\"PilsnerLager500ML\",\"product_name\":\"Pilsner Lager 500 ML\",\"option_id\":\"5\",\"net_unit_cost\":\"130.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1300.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-11-16\",\"status\":\"received\",\"unit_cost\":\"130.0000\",\"real_unit_cost\":\"130.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"130.0000\"}]}', '2022-05-01 14:02:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (15, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"4\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Muranga Distributors\",\"company\":\"Muranga Distributors\",\"vat_no\":\"\",\"address\":\"636\",\"city\":\"Muranga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"2389838923\",\"email\":\"kimems01@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-05-01 14:09:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (16, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"5\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Muranga Distributors\",\"company\":\"Muranga Distributors\",\"vat_no\":\"\",\"address\":\"36\",\"city\":\"Nairobi\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"389223883\",\"email\":\"muranga@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-05-01 14:09:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (17, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"2\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Test Supplier\",\"company\":\"Supplier Company Name\",\"vat_no\":null,\"address\":\"Supplier Address\",\"city\":\"Petaling Jaya\",\"state\":\"Selangor\",\"postal_code\":\"46050\",\"country\":\"Malaysia\",\"phone\":\"0123456789\",\"email\":\"supplier@tecdiary.com\",\"cf1\":\"-\",\"cf2\":\"-\",\"cf3\":\"-\",\"cf4\":\"-\",\"cf5\":\"-\",\"cf6\":\"-\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":null}}', '2022-05-01 14:09:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (18, 'Sale is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"7\",\"date\":\"2022-05-02 02:09:41\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"420.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"420.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\":\"c92d5280bd5a91b28bb88f2658e77d8196ef4bd826b5864dda87d6b91fd6cf6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"11\",\"sale_id\":\"7\",\"product_id\":\"4\",\"product_code\":\"81105746\",\"product_name\":\"Plain Long sleeve\",\"product_type\":\"standard\",\"option_id\":\"9\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"Size 22\",\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 02:10:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (19, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"4\",\"code\":\"81105746\",\"name\":\"Plain Long sleeve\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"2\",\"slug\":\"81105746\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-02 08:30:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (20, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"8\",\"date\":\"2022-05-02 08:37:00\",\"reference_no\":\"SALE2022\\/05\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1680.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1680.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1680.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\":\"46f189d22f9c57eabdcb4fadb8e3640b9d577c459656a0f6f679e7df048a574e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"12\",\"sale_id\":\"8\",\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"12\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"56\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"RED\",\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"13\",\"sale_id\":\"8\",\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"13\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"67\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"MAROON\",\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 14:31:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (21, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"3\",\"reference_no\":\"PO2022\\/05\\/0001\",\"date\":\"2022-05-02 08:34:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"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\":\"6\",\"purchase_id\":\"3\",\"transfer_id\":null,\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"option_id\":\"13\",\"net_unit_cost\":\"300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1800.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-02\",\"status\":\"received\",\"unit_cost\":\"300.0000\",\"real_unit_cost\":\"300.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"300.0000\"},{\"id\":\"7\",\"purchase_id\":\"3\",\"transfer_id\":null,\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"option_id\":\"12\",\"net_unit_cost\":\"300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"3000.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-02\",\"status\":\"received\",\"unit_cost\":\"300.0000\",\"real_unit_cost\":\"300.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"300.0000\"}]}', '2022-05-02 14:31:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (22, 'Quotation is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-05-02 08:36:00\",\"reference_no\":\"2020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"note\":\"\",\"internal_note\":null,\"total\":\"1680.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1680.0000\",\"status\":\"completed\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1a414a8812404d8fa95431f52c8b5361a7bbd7a73e38d5154728fa7fd9f8380e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1\",\"quote_id\":\"1\",\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"13\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":null,\"real_unit_price\":\"420.0000\",\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"unit\":\"4\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"MAROON\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2\",\"quote_id\":\"1\",\"product_id\":\"5\",\"product_code\":\"23033060\",\"product_name\":\"PLAIN SWEATERS SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"12\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":null,\"real_unit_price\":\"420.0000\",\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"unit\":\"4\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"RED\",\"hsn_code\":null,\"second_name\":\"\"}]}', '2022-05-02 14:31:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (23, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"11\",\"date\":\"2022-05-02 15:05:26\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0010\",\"customer_id\":\"10\",\"customer\":\"Uhuru Market Customers\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"530.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\":\"530.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\":\"bea6add8099ab67d4f5a575ef5ba13781bc141468ab8abb265da6985607c477f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"16\",\"sale_id\":\"11\",\"product_id\":\"7\",\"product_code\":\"04566066\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 15:09:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (24, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"10\",\"date\":\"2022-05-02 15:03:19\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0009\",\"customer_id\":\"10\",\"customer\":\"Uhuru Market Customers\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"530.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\":\"530.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\":\"b5a18ab3df676dd48eab66eb2e09c67b5d786aa8aa6f65f4005606abc6bac3f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"15\",\"sale_id\":\"10\",\"product_id\":\"7\",\"product_code\":\"04566066\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 15:09:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (25, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"9\",\"date\":\"2022-05-02 14:45:13\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0008\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1060.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1060.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1060.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\":\"7656f526c605e89c734a5f03c9a98437df8e3faf2c90f2a1e5b35ac19beb46c3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"14\",\"sale_id\":\"9\",\"product_id\":\"7\",\"product_code\":\"04566066\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1060.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 15:09:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (26, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"4\",\"reference_no\":\"PO2022\\/05\\/0002\",\"date\":\"2022-05-02 20:39:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"8\",\"purchase_id\":\"4\",\"transfer_id\":null,\"product_id\":\"6\",\"product_code\":\"67569947\",\"product_name\":\"plain sweater size 24\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2022-05-02\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"30.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"9\",\"purchase_id\":\"4\",\"transfer_id\":null,\"product_id\":\"7\",\"product_code\":\"04566066\",\"product_name\":\"plain sweater size 30\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"40.0000\",\"date\":\"2022-05-02\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"40.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-02 15:10:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (27, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"12\",\"date\":\"2022-05-02 15:38:21\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"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\":\"9b812c977c90209659c5ed42ff421c35dc59dab745fceff1c2ccc9ab2bcbd2ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"17\",\"sale_id\":\"12\",\"product_id\":\"6\",\"product_code\":\"67569947\",\"product_name\":\"plain sweater size 24\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"18\",\"sale_id\":\"12\",\"product_id\":\"6\",\"product_code\":\"67569947\",\"product_name\":\"plain sweater size 24\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-02 15:39:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (28, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"7\",\"code\":\"04566066\",\"name\":\"plain sweater size 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"530.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"4b4359e55fffeb1154feb6acb0c60017.jpg\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"04566066\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"1\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:06:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (29, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"10\",\"code\":\"07543828\",\"name\":\"Tshirt Large\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"07543828\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:06:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (30, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"5\",\"code\":\"23033060\",\"name\":\"PLAIN SWEATERS SIZE 22\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"3.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"23033060\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:06:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (31, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"9\",\"code\":\"29094312\",\"name\":\"Embroidery marking\",\"unit\":null,\"cost\":null,\"price\":\"50.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"29094312\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:07:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (32, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"11\",\"code\":\"34330259\",\"name\":\"size 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"34330259\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:07:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (33, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"6\",\"code\":\"67569947\",\"name\":\"plain sweater size 24\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"460.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"67569947\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:07:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (34, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"8\",\"code\":\"96717115\",\"name\":\"Embroidery Logo\",\"unit\":null,\"cost\":null,\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"embroidery-logo\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 13:07:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (35, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"13\",\"date\":\"2022-05-03 13:49:39\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0012\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"420.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\":\"420.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\":\"7fa9c53dd85f4bd9111b08b60f275a6d28f2599ed51029137e7075667a45f694\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"19\",\"sale_id\":\"13\",\"product_id\":\"12\",\"product_code\":\"31356838\",\"product_name\":\"plain sweater size 22\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-03 15:18:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (36, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"17\",\"code\":\"09143283\",\"name\":\"plain sweater size 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"09143283\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:00:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (37, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":false}', '2022-05-03 16:00:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (38, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"14\",\"code\":\"19800675\",\"name\":\"plain sweater size 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"490.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"19800675\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (39, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"13\",\"code\":\"27559356\",\"name\":\"size 24 plain\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"460.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"size-24-plain\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (40, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"12\",\"code\":\"31356838\",\"name\":\"plain sweater size 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"31356838\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (41, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"19\",\"code\":\"32910059\",\"name\":\"plain sweater size 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"32910059\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (42, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"16\",\"code\":\"38910950\",\"name\":\"plain sweater size 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"540.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"38910950\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (43, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"20\",\"code\":\"40468510\",\"name\":\"plain sweater size 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"40468510\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (44, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"15\",\"code\":\"6799122\",\"name\":\"plain sweater size 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"510.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"67991229\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:01:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (45, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"18\",\"code\":\"80793621\",\"name\":\"plain sweater size 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"80793621\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"1\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:02:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (46, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"21\",\"code\":\"83532060\",\"name\":\"size 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":\"0\",\"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\":\"\",\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"size-22\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-03 16:07:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (47, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"45\",\"code\":\"41065901\",\"name\":\"Another Test\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"41065901\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-04 08:09:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (48, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"44\",\"code\":\"92434403\",\"name\":\"Test product\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"2\",\"slug\":\"92434403\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-04 08:10:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (49, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"5\",\"reference_no\":\"PO2022\\/05\\/0003\",\"date\":\"2022-05-04 08:32:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"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\":\"12\",\"purchase_id\":\"5\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"PLAIN SWEATERS size 32\",\"option_id\":\"47\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"13\",\"purchase_id\":\"5\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"PLAIN SWEATERS size 32\",\"option_id\":\"48\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"14\",\"purchase_id\":\"5\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"PLAIN SWEATERS size 32\",\"option_id\":\"49\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-04 08:48:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (50, 'Product is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"66\",\"code\":\"112033\",\"name\":\"Embroidery Works\",\"unit\":null,\"cost\":null,\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"2\",\"slug\":\"Embroidery-Works\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Designs\",\"hide_pos\":\"0\"}}', '2022-05-08 00:36:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (51, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"33\",\"code\":\"05012602\",\"name\":\"STRIPE SWEATERS SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"590.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"22.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripe-sweaters-size-32\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (52, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"40\",\"code\":\"08332972\",\"name\":\"STRIPE SWEATERS SIZE 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"670.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"13.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripe-sweaters-size-38\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (53, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"53\",\"code\":\"09764433\",\"name\":\"STIPED SLEVLESS SIZE 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"470.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"09764433\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (54, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"38\",\"code\":\"10139855\",\"name\":\"STRIPED SWEATERS SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweaters-size-36\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (55, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"47\",\"code\":\"10407222\",\"name\":\" MARVINS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"325.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"10407222\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (56, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"62\",\"code\":\"17641369\",\"name\":\"KIDS TSHIRT\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"16.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"17641369\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:49:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (57, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"22\",\"code\":\"17968457\",\"name\":\"PLAIN SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"105.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-22\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (58, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"57\",\"code\":\"20965480\",\"name\":\"STRIPED SLEVLESS SIZE 36 \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"610.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"20965480\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (59, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"30\",\"code\":\"21946262\",\"name\":\"plain sweater size 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"540.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"77.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-30\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (60, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"61\",\"code\":\"22328908\",\"name\":\"Embroidery marking\",\"unit\":null,\"cost\":null,\"price\":\"50.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"22328908\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (61, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"35\",\"code\":\"24411593\",\"name\":\"STRIPED SIZE 34 \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"620.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"30.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-size-34\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (62, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"63\",\"code\":\"25517885\",\"name\":\"ADULTS TSHIRTS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"62.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"25517885\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (63, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"39\",\"code\":\"30776567\",\"name\":\"PLAIN SWEATERS SIZE 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"94.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweaters-size-38\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:50:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (64, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"23\",\"code\":\"37994160\",\"name\":\"PLAIN SWEATERS SIZE 24\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"460.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"116.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweaters-size-24\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:51:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (65, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"37\",\"code\":\"38548971\",\"name\":\"STRIPED SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"17.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-36\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:52:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (66, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"65\",\"code\":\"40559019\",\"name\":\"uzi embroidery\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"270.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"40559019\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:52:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (67, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"55\",\"code\":\"41289662\",\"name\":\"STRIPED SLEVLESS  SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-slevless-size-32\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:52:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (68, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"58\",\"code\":\"43314742\",\"name\":\"SMALL TSHIRT \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"43314742\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:52:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (69, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"36\",\"code\":\"44501722\",\"name\":\"PLAIN SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"92.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-36\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:52:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (70, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"26\",\"code\":\"46051194\",\"name\":\"PLAIN SWEATER SIZE 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"490.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"114.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-26\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:53:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (71, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"27\",\"code\":\"47227051\",\"name\":\"STRIPED SWEATR SIZE 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"510.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"17.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweatr-size-26\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:53:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (72, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"52\",\"code\":\"47836278\",\"name\":\"PLAIN SLEVLESS SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"590.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"47836278\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:53:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (73, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"28\",\"code\":\"49512078\",\"name\":\"STRIPED SWEATER SIZE 28 \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"530.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"28.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-28\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:54:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (74, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"50\",\"code\":\"50983567\",\"name\":\" PLAIN SLEEVLESS SWEATRS SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"530.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"50983567\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:54:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (75, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"64\",\"code\":\"54186532\",\"name\":\"PLAIN SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"54186532\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:54:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (76, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"46\",\"code\":\"54231338\",\"name\":\"AZURE MARVINS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"31.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"54231338\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:54:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (77, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"34\",\"code\":\"60633359\",\"name\":\"PLAIN SWEATER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"103.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-34\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:58:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (78, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"59\",\"code\":\"61700595\",\"name\":\"TSHIRT SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"61700595\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:58:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (79, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"60\",\"code\":\"62157189\",\"name\":\"Embroidery Logo\",\"unit\":null,\"cost\":null,\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"embroidery-logo\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:58:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (80, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"32\",\"code\":\"64550743\",\"name\":\"PLAIN SWEATER SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"85.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-32\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:58:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (81, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"49\",\"code\":\"64955122\",\"name\":\"SCARFS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"6.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"64955122\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (82, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"43\",\"code\":\"66394331\",\"name\":\"medium t shirts\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"66394331\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (83, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"51\",\"code\":\"67406358\",\"name\":\"PLAIN SLEEVLESS SWETER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"560.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"67406358\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (84, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"25\",\"code\":\"68610048\",\"name\":\"STRIPED SWEATER SIZE 24\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"29.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-24\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (85, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"48\",\"code\":\"71275573\",\"name\":\" LEGWARMERS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"71275573\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (86, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"54\",\"code\":\"75508762\",\"name\":\"STRIPED SLEVLESS SIZE 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"490.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"9.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"75508762\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (87, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"31\",\"code\":\"75628363\",\"name\":\"STRIPED SWEATER SIZE 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"560.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"39.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-30\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 11:59:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (88, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"24\",\"code\":\"77317537\",\"name\":\"STRIPED SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-22\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 12:00:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (89, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"42\",\"code\":\"77873284\",\"name\":\"large tshirt\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"77873284\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 12:00:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (90, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"41\",\"code\":\"83326093\",\"name\":\"PLAIN  SWEATER  SIZE 40\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-40\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 12:00:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (91, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"56\",\"code\":\"85879150\",\"name\":\"STRIPED SLEVLESS SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"580.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"8.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"85879150\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 12:00:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (92, 'Product is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"29\",\"code\":\"86352855\",\"name\":\"PLAIN SWEATER SIZE 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"510.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"79.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-28\",\"featured\":\"1\",\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-09 12:00:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (93, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"15\",\"reference_no\":\"PO2022\\/05\\/0013\",\"date\":\"2022-05-07 19:18:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"203\",\"purchase_id\":\"15\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"383\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-07\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (94, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"14\",\"reference_no\":\"PO2022\\/05\\/0012\",\"date\":\"2022-05-05 17:18:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"202\",\"purchase_id\":\"14\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"202\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:02:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (95, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":false,\"items\":false}', '2022-05-09 12:02:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (96, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"13\",\"reference_no\":\"PO2022\\/05\\/0011\",\"date\":\"2022-05-05 16:43:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"195\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"272\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"196\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"STRIPE SWEATERS SIZE 32\",\"option_id\":\"58\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"197\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"307\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"198\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"93\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"199\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"222\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"200\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"278\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"201\",\"purchase_id\":\"13\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"385\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (97, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"12\",\"reference_no\":\"PO2022\\/05\\/0010\",\"date\":\"2022-05-05 16:38:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"194\",\"purchase_id\":\"12\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"221\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (98, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"11\",\"reference_no\":\"PO2022\\/05\\/0009\",\"date\":\"2022-05-05 12:10:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"193\",\"purchase_id\":\"11\",\"transfer_id\":null,\"product_id\":\"62\",\"product_code\":\"17641369\",\"product_name\":\"KIDS TSHIRT\",\"option_id\":\"544\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (99, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"10\",\"reference_no\":\"PO2022\\/05\\/0008\",\"date\":\"2022-05-05 12:10:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"184\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"393\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"22.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"22.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"185\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"382\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"13.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"186\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"385\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"187\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"383\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"188\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"395\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"189\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"394\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"190\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"386\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"191\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"387\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"192\",\"purchase_id\":\"10\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"396\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (100, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"9\",\"reference_no\":\"PO2022\\/05\\/0007\",\"date\":\"2022-05-05 12:00:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"179\",\"purchase_id\":\"9\",\"transfer_id\":null,\"product_id\":\"62\",\"product_code\":\"17641369\",\"product_name\":\"KIDS TSHIRT\",\"option_id\":\"544\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"180\",\"purchase_id\":\"9\",\"transfer_id\":null,\"product_id\":\"62\",\"product_code\":\"17641369\",\"product_name\":\"KIDS TSHIRT\",\"option_id\":\"543\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"181\",\"purchase_id\":\"9\",\"transfer_id\":null,\"product_id\":\"63\",\"product_code\":\"25517885\",\"product_name\":\"ADULTS TSHIRTS\",\"option_id\":\"557\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"36.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"36.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"182\",\"purchase_id\":\"9\",\"transfer_id\":null,\"product_id\":\"63\",\"product_code\":\"25517885\",\"product_name\":\"ADULTS TSHIRTS\",\"option_id\":\"547\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"183\",\"purchase_id\":\"9\",\"transfer_id\":null,\"product_id\":\"63\",\"product_code\":\"25517885\",\"product_name\":\"ADULTS TSHIRTS\",\"option_id\":\"554\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"23.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"23.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (101, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"8\",\"reference_no\":\"PO2022\\/05\\/0006\",\"date\":\"2022-05-05 10:53:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"170\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"53\",\"product_code\":\"09764433\",\"product_name\":\"STIPED SLEVLESS SIZE 26\",\"option_id\":\"456\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"171\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"54\",\"product_code\":\"75508762\",\"product_name\":\"STRIPED SLEVLESS SIZE 28\",\"option_id\":\"466\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"172\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"56\",\"product_code\":\"85879150\",\"product_name\":\"STRIPED SLEVLESS SIZE 34\",\"option_id\":\"486\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"173\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"55\",\"product_code\":\"41289662\",\"product_name\":\"STRIPED SLEVLESS  SIZE 32\",\"option_id\":\"476\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"174\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"57\",\"product_code\":\"20965480\",\"product_name\":\"STRIPED SLEVLESS SIZE 36 \",\"option_id\":\"496\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"175\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"50\",\"product_code\":\"50983567\",\"product_name\":\" PLAIN SLEEVLESS SWEATRS SIZE 32\",\"option_id\":\"401\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"176\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"51\",\"product_code\":\"67406358\",\"product_name\":\"PLAIN SLEEVLESS SWETER SIZE 34\",\"option_id\":\"419\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"177\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"52\",\"product_code\":\"47836278\",\"product_name\":\"PLAIN SLEVLESS SWEATER SIZE 36\",\"option_id\":\"438\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"178\",\"purchase_id\":\"8\",\"transfer_id\":null,\"product_id\":\"51\",\"product_code\":\"67406358\",\"product_name\":\"PLAIN SLEEVLESS SWETER SIZE 34\",\"option_id\":\"420\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (102, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"7\",\"reference_no\":\"PO2022\\/05\\/0005\",\"date\":\"2022-05-05 10:13:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"158\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"344\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"44.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"44.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"44.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"44.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"159\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"46\",\"product_code\":\"54231338\",\"product_name\":\"AZURE MARVINS\",\"option_id\":\"326\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"31.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"31.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"160\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"333\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"57.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"60.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"161\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"328\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"108.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"108.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"108.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"108.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"162\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"330\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"31.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"31.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"163\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"329\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"17.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"17.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"164\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"48\",\"product_code\":\"71275573\",\"product_name\":\" LEGWARMERS\",\"option_id\":\"346\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"165\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"49\",\"product_code\":\"64955122\",\"product_name\":\"SCARFS\",\"option_id\":\"371\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"166\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"337\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"167\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"327\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"21.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"168\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"option_id\":\"334\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"169\",\"purchase_id\":\"7\",\"transfer_id\":null,\"product_id\":\"42\",\"product_code\":\"77873284\",\"product_name\":\"large tshirt\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-05\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:03:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (103, 'Purchase is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"6\",\"reference_no\":\"PO2022\\/05\\/0004\",\"date\":\"2022-05-04 17:56:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":null,\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"15\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"258\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"16\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"230\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"17\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"174\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"18\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"128\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"19\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"41\",\"product_code\":\"83326093\",\"product_name\":\"PLAIN  SWEATER  SIZE 40\",\"option_id\":\"295\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"20\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"139\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"19.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"21\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"186\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"22\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"307\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"23\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"93\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"24\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"251\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"21.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"25\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"223\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"26\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"167\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"120\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"28\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"41\",\"product_code\":\"83326093\",\"product_name\":\"PLAIN  SWEATER  SIZE 40\",\"option_id\":\"288\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"29\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"141\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"13.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"30\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"188\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"31\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"309\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"32\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"94\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"33\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"254\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"34\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"225\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"35\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"170\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"36\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"122\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"37\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"41\",\"product_code\":\"83326093\",\"product_name\":\"PLAIN  SWEATER  SIZE 40\",\"option_id\":\"291\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"38\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"140\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"39\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"187\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"40\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"308\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"41\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"95\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"17.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"17.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"42\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"252\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"43\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"224\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"44\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"168\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"45\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"121\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"46\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"41\",\"product_code\":\"83326093\",\"product_name\":\"PLAIN  SWEATER  SIZE 40\",\"option_id\":\"289\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"47\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"150\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"48\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"197\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"49\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"197\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"50\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"320\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"51\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"104\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"52\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"264\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"53\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"236\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"54\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"178\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"55\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"133\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"56\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"153\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"57\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"200\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"58\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"321\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"59\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"108\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"60\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"268\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"61\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"237\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"62\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"181\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"23.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"23.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"63\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"134\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"64\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"143\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"65\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"190\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"66\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"311\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"67\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"96\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"68\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"255\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"69\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"227\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"70\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"171\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"71\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"124\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"72\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"157\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"73\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"204\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"74\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"325\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"75\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"110\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"76\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"269\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"77\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"241\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"78\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"185\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"79\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"138\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"80\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"250\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"81\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"287\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"82\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"213\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"83\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"222\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"84\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"278\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"85\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"STRIPE SWEATERS SIZE 32\",\"option_id\":\"74\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"86\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"35\",\"product_code\":\"24411593\",\"product_name\":\"STRIPED SIZE 34 \",\"option_id\":\"119\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"87\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"37\",\"product_code\":\"38548971\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"166\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"88\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"40\",\"product_code\":\"08332972\",\"product_name\":\"STRIPE SWEATERS SIZE 38\",\"option_id\":\"83\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"89\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"286\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"90\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"249\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"91\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"221\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"92\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"277\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"93\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"STRIPE SWEATERS SIZE 32\",\"option_id\":\"72\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"94\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"212\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"95\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"35\",\"product_code\":\"24411593\",\"product_name\":\"STRIPED SIZE 34 \",\"option_id\":\"118\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"96\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"37\",\"product_code\":\"38548971\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"165\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"97\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"40\",\"product_code\":\"08332972\",\"product_name\":\"STRIPE SWEATERS SIZE 38\",\"option_id\":\"82\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"98\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"280\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"99\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"245\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"100\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"210\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"101\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"214\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"102\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"274\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"103\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"STRIPE SWEATERS SIZE 32\",\"option_id\":\"68\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"104\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"35\",\"product_code\":\"24411593\",\"product_name\":\"STRIPED SIZE 34 \",\"option_id\":\"115\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"105\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"246\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"106\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"205\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"107\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"218\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"108\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"274\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"109\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"35\",\"product_code\":\"24411593\",\"product_name\":\"STRIPED SIZE 34 \",\"option_id\":\"111\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"110\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"37\",\"product_code\":\"38548971\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"162\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"111\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"142\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"17.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"17.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"112\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"189\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"113\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"310\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"114\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"97\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"115\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"253\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"116\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"282\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"117\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"244\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"118\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"208\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"119\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"215\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"120\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"272\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"121\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"389\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"122\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"151\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"123\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"199\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"124\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"317\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"26.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"26.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"125\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"100\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"126\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"259\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"127\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"232\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"128\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"179\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"129\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"option_id\":\"127\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"130\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"285\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"131\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"248\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"132\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"209\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"133\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"219\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"134\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"275\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"135\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"33\",\"product_code\":\"05012602\",\"product_name\":\"STRIPE SWEATERS SIZE 32\",\"option_id\":\"71\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"136\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"35\",\"product_code\":\"24411593\",\"product_name\":\"STRIPED SIZE 34 \",\"option_id\":\"117\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"137\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"37\",\"product_code\":\"38548971\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"164\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"138\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"155\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"139\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"202\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"140\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"323\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"141\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"109\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"142\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"148\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"143\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"195\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"144\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"156\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"145\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"243\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"146\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"option_id\":\"207\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"147\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"option_id\":\"220\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"148\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"31\",\"product_code\":\"75628363\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"276\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"149\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"396\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"150\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"option_id\":\"152\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"151\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"198\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"152\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"319\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"153\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"option_id\":\"105\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"154\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"263\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"155\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"235\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"156\",\"purchase_id\":\"6\",\"transfer_id\":null,\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"option_id\":\"279\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-09 12:10:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (104, 'Sale is being deleted by wanjiru (User Id: 6)', '{\"model\":{\"id\":\"61\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"KELVIN36\",\"customer_id\":\"14\",\"customer\":\"Uhuru Market Customers\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"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\":\"a409d131f64810268001f8a65df2f3266de37b66cfafb13e8bd236e846e5e694\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"112\",\"sale_id\":\"61\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"MAROON\",\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-05-10 13:32:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (105, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"20\",\"reference_no\":\"PO2022\\/05\\/0018\",\"date\":\"2022-05-11 16:12:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"388\",\"purchase_id\":\"20\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"option_id\":\"1057\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-11\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"389\",\"purchase_id\":\"20\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"option_id\":\"1058\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-11\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"390\",\"purchase_id\":\"20\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"option_id\":\"1059\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-11\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:16:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (106, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"27\",\"reference_no\":\"PO2022\\/05\\/0024\",\"date\":\"2022-05-14 18:35:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"416\",\"purchase_id\":\"27\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"676\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-14\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:16:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (107, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"25\",\"reference_no\":\"PO2022\\/05\\/0022\",\"date\":\"2022-05-12 18:35:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"414\",\"purchase_id\":\"25\",\"transfer_id\":null,\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPPED SWEATER SIZE 38\",\"option_id\":\"815\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:16:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (108, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"21\",\"reference_no\":\"PO2022\\/05\\/0019\",\"date\":\"2022-05-11 16:59:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"391\",\"purchase_id\":\"21\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"option_id\":\"1059\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-11\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:16:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (109, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"18\",\"reference_no\":\"PO2022\\/05\\/0016\",\"date\":\"2022-05-10 14:51:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"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\":\"353\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"819\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"354\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"817\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"34.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"34.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"34.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"34.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"355\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"824\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"356\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"818\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"108.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"108.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"108.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"108.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"357\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"821\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"21.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"358\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"822\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"27.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"57.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"359\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"830\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"360\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"820\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"31.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"32.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"361\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"831\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"42.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"42.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"42.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"42.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"362\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"825\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"363\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"option_id\":\"828\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"364\",\"purchase_id\":\"18\",\"transfer_id\":null,\"product_id\":\"86\",\"product_code\":\"33793545\",\"product_name\":\"AZURE MARVINS\",\"option_id\":\"832\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"30.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"30.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:16:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (110, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"16\",\"reference_no\":\"PO2022\\/05\\/0014\",\"date\":\"2022-05-09 14:29:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":null,\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"204\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"88\",\"product_code\":\"76076682\",\"product_name\":\"SCARFS\",\"option_id\":\"858\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"205\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"583\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"206\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"576\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"207\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"578\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"208\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"577\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"209\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"587\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"210\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"588\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"211\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"580\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"212\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"592\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"213\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"579\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"214\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"586\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"215\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"609\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"216\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"603\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"217\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"605\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"218\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"604\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"31.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"31.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"31.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"219\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"613\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"220\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"614\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"221\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"617\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"222\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"606\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"223\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"616\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"224\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"611\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"225\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"618\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"226\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"612\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"227\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"635\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"19.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"19.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"228\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"629\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"19.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"19.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"229\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"631\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"230\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"630\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"231\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"638\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"232\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"639\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"233\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"633\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"234\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"644\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"235\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"632\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"236\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"639\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"237\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"option_id\":\"640\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"238\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"665\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"239\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"668\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"240\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"666\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"241\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"677\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"242\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"669\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"243\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"681\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"244\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"667\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"245\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"679\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"246\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"675\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"247\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"689\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"248\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"682\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"249\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"683\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"17.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"250\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"694\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"251\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"693\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"252\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"687\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"253\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"698\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"254\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"685\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"255\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"695\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"256\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"option_id\":\"699\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"257\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"719\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"258\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"716\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"259\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"710\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"19.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"260\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"711\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"261\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"720\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"262\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"721\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"263\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"713\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"264\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"725\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"265\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"719\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"266\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"option_id\":\"719\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"267\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"736\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"268\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"739\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"269\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"737\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"13.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"270\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"747\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"271\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"749\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"272\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"741\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"273\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"752\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"13.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"274\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"option_id\":\"746\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"275\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"765\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"276\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"764\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"277\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"763\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"278\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"773\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"279\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"774\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"280\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"766\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"281\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"779\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"282\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"767\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"283\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"790\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"284\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"791\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"285\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"801\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"286\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"802\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"287\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"793\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"288\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"799\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"289\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"602\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"290\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"601\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"291\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"596\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"292\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"598\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"293\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"595\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"294\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"597\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"295\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"600\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"296\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"623\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"297\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"619\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"298\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"622\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"299\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"624\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"300\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"620\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"301\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"627\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"302\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"option_id\":\"626\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"303\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"645\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"304\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"653\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"305\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"648\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"306\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"650\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"307\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"651\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"308\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPED SWEATER SIZE 26\",\"option_id\":\"647\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"309\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPED  SWEATER SIZE 22\",\"option_id\":\"593\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"310\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"658\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"311\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"663\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"312\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"660\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"313\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"662\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"314\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"655\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"23.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"23.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"315\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STIPED SWEATER SIZE 28\",\"option_id\":\"661\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"316\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"708\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"317\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"704\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"318\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"705\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"13.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"13.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"319\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"709\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"320\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"707\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"321\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"option_id\":\"703\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"322\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"731\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"323\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"726\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"324\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"729\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"325\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"733\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"326\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"734\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"327\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPED SWEATER SIZE 32\",\"option_id\":\"730\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"328\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"761\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"329\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"757\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"330\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"762\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"331\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"759\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"332\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"758\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"333\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STIPED SWEATER SIZE 34\",\"option_id\":\"753\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"28.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"334\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"789\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"335\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"787\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"336\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"785\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"337\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"option_id\":\"780\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"14.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"338\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPED SWEATER SIZE 38\",\"option_id\":\"816\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"339\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPED SWEATER SIZE 38\",\"option_id\":\"813\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"340\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPED SWEATER SIZE 38\",\"option_id\":\"807\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"341\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"89\",\"product_code\":\"34750754\",\"product_name\":\"ADULT TSHIRTS\",\"option_id\":\"869\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"342\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"89\",\"product_code\":\"34750754\",\"product_name\":\"ADULT TSHIRTS\",\"option_id\":\"880\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"21.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"343\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"90\",\"product_code\":\"27447770\",\"product_name\":\"KIDS TSHIRTS\",\"option_id\":\"895\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"344\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"89\",\"product_code\":\"34750754\",\"product_name\":\"ADULT TSHIRTS\",\"option_id\":\"879\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"37.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"37.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"345\",\"purchase_id\":\"16\",\"transfer_id\":null,\"product_id\":\"90\",\"product_code\":\"27447770\",\"product_name\":\"KIDS TSHIRTS\",\"option_id\":\"892\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 13:17:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (111, 'Expense is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"2\",\"date\":\"2022-05-09 19:34:00\",\"reference\":\"2022\\/05\\/0002\",\"amount\":\"11730.0000\",\"note\":\"<p>Others. (To-be well described) No expenses called others. By Charles<\\/p>\",\"created_by\":\"6\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-05-15 13:42:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (112, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"17\",\"reference_no\":\"PO2022\\/05\\/0015\",\"date\":\"2022-05-10 11:53:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-11 15:52:20\",\"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\":\"381\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"101\",\"product_code\":\"25205383\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 32\",\"option_id\":\"990\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"382\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"102\",\"product_code\":\"87507362\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 34\",\"option_id\":\"1007\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"383\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"104\",\"product_code\":\"33300347\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 36\",\"option_id\":\"1041\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"384\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"104\",\"product_code\":\"33300347\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 36\",\"option_id\":\"1044\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"385\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"102\",\"product_code\":\"87507362\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 34\",\"option_id\":\"1008\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"386\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPPED SWEATER SIZE 36\",\"option_id\":\"788\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"387\",\"purchase_id\":\"17\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"792\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 14:38:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (113, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"24\",\"reference_no\":\"PO2022\\/05\\/0021\",\"date\":\"2022-05-12 17:34:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"6\",\"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\":\"412\",\"purchase_id\":\"24\",\"transfer_id\":null,\"product_id\":\"107\",\"product_code\":\"57285449\",\"product_name\":\"PLAIN SWEATER SIZE 40\",\"option_id\":\"1064\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"50.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"50.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"413\",\"purchase_id\":\"24\",\"transfer_id\":null,\"product_id\":\"108\",\"product_code\":\"08702336\",\"product_name\":\"PLAIN SWEATER SIZE 42\",\"option_id\":\"1083\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 14:39:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (114, 'Purchase is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"23\",\"reference_no\":\"PO2022\\/05\\/0020\",\"date\":\"2022-05-12 17:12:00\",\"supplier_id\":\"6\",\"supplier\":\"Warehouse\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-12 17:22:50\",\"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\":\"404\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"option_id\":\"592\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"405\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"option_id\":\"617\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"406\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"option_id\":\"681\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"407\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STRIPPED SWEATER SIZE 34\",\"option_id\":\"759\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"408\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPPED SWEATER SIZE 36\",\"option_id\":\"787\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"409\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPPED SWEATER SIZE 38\",\"option_id\":\"807\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"410\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"option_id\":\"766\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"411\",\"purchase_id\":\"23\",\"transfer_id\":null,\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"option_id\":\"793\",\"net_unit_cost\":\"0.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"17.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"17.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2022-05-15 14:39:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (115, 'Quantity adjustment is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"5\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0005\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"7\",\"adjustment_id\":\"5\",\"product_id\":\"77\",\"option_id\":\"716\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"BLACK\"}]}', '2022-05-15 18:19:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (116, 'Quantity adjustment is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"4\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0004\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"6\",\"adjustment_id\":\"4\",\"product_id\":\"75\",\"option_id\":\"689\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"BLACK\"}]}', '2022-05-15 18:19:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (117, 'Quantity adjustment is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"3\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0003\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"5\",\"adjustment_id\":\"3\",\"product_id\":\"71\",\"option_id\":\"635\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"BLACK\"}]}', '2022-05-15 18:20:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (118, 'Quantity adjustment is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"2\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0002\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"4\",\"adjustment_id\":\"2\",\"product_id\":\"69\",\"option_id\":\"609\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":\"BLACK\"}]}', '2022-05-15 18:20:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (119, 'Product is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"106\",\"code\":\"12604248\",\"name\":\"UZI\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"12604248\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-15 22:18:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (120, 'Product is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"110\",\"code\":\"Warehouse\",\"name\":\"Plain Sweater Size 32\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-32\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-16 01:58:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (121, 'Product is being deleted by kelvin (User Id: 8)', '{\"model\":{\"id\":\"105\",\"code\":\"66561987\",\"name\":\"CANVAS MATERIAL\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"66561987\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-22 16:34:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (122, 'Product is being deleted by kelvin (User Id: 8)', '{\"model\":{\"id\":\"111\",\"code\":\"22334466\",\"name\":\"UZI\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"uzi\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-05-22 16:34:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (123, 'Sale is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"94\",\"date\":\"2022-05-08 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0034\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"308000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"308000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1540\",\"pos\":\"0\",\"paid\":\"308000.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\":\"f499ee0768f6fcf72fa7bb7a0c2ed9daa1348938f4be6e6e9324b7602c4b3e98\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"172\",\"sale_id\":\"94\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1540.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"308000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1540.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-05-24 20:37:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (124, 'Payment is being deleted by charles (User Id: 5)', '{\"model\":{\"id\":\"175\",\"date\":\"2022-05-24 12:52:00\",\"sale_id\":\"156\",\"return_id\":null,\"purchase_id\":null,\"reference_no\":\"IPAY2022\\/05\\/0142\",\"transaction_id\":null,\"paid_by\":\"cash\",\"cheque_no\":\"\",\"cc_no\":\"\",\"cc_holder\":\"\",\"cc_month\":\"\",\"cc_year\":\"\",\"cc_type\":\"Visa\",\"amount\":\"550.0000\",\"currency\":null,\"created_by\":\"5\",\"attachment\":null,\"type\":\"received\",\"note\":\"\",\"pos_paid\":\"0.0000\",\"pos_balance\":\"0.0000\",\"approval_code\":null}}', '2022-05-27 20:31:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (125, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"99\",\"code\":\"03515693\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"580.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"7.0000\",\"tax_rate\":\"2\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"0\",\"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\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripped-sleeveless-sweater-size-34\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (126, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"81\",\"code\":\"04922238\",\"name\":\"PLAIN SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"80.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-36\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (127, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"108\",\"code\":\"08702336\",\"name\":\"PLAIN SWEATER SIZE 42\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"850.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"08702336\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (128, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"112\",\"code\":\"11234321\",\"name\":\"Thread\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"0.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"7\",\"supplier1price\":null,\"supplier2\":\"8\",\"supplier2price\":null,\"supplier3\":\"9\",\"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\":\"\",\"supplier3_part_no\":\"\",\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"thread\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (129, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"97\",\"code\":\"11235261\",\"name\":\"STRIPPED SLEEVESS SWEATER SIZE  32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stiped-sleevess-sweater-size-32\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (130, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"93\",\"code\":\"13194312\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 24\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"13194312\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (131, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"101\",\"code\":\"25205383\",\"name\":\"PLAIN SLEEVELESS SWEATER SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"530.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sleeveless-sweater-size-32\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (132, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"73\",\"code\":\"25224418\",\"name\":\"STRIPPED SWEATER SIZE 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"530.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"69.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"25224418\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (133, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"90\",\"code\":\"27447770\",\"name\":\"KIDS TSHIRTS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"27447770\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (134, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"104\",\"code\":\"33300347\",\"name\":\"PLAIN SLEEVELESS SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"590.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"33300347\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (135, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"83\",\"code\":\"33727909\",\"name\":\"PLAIN SWEATER SIZE 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"62.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"33727909\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (136, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"86\",\"code\":\"33793545\",\"name\":\"AZURE MARVINS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"30.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"33793545\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (137, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"69\",\"code\":\"34018336\",\"name\":\"PLAIN SWEATER SIZE 24 \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"460.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"147.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"34018336\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (138, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"89\",\"code\":\"34750754\",\"name\":\"ADULT TSHIRTS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"47.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"34750754\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (139, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"82\",\"code\":\"35420143\",\"name\":\"STRIPPED SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"31.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"35420143\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (140, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"76\",\"code\":\"45799187\",\"name\":\"STRIPPED SWEATER SIZE 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"560.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"48.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"45799187\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (141, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"87\",\"code\":\"54138138\",\"name\":\"LEGWARMERS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"54138138\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (142, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"67\",\"code\":\"55642863\",\"name\":\"PLAIN SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"74.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"55642863\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (143, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"72\",\"code\":\"55828539\",\"name\":\"STRIPPED SWEATER SIZE 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"510.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"38.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"55828539\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (144, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"85\",\"code\":\"57082232\",\"name\":\"MARVINS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"299.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"57082232\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (145, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"107\",\"code\":\"57285449\",\"name\":\"PLAIN SWEATER SIZE 40\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"57285449\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (146, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"74\",\"code\":\"58505902\",\"name\":\"PLAIN SWEATER SIZE 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"510.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"90.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sweater-size-28\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (147, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"109\",\"code\":\"61796204\",\"name\":\"STRIPED SWEATER SIZE 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"670.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"61796204\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (148, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"77\",\"code\":\"67466475\",\"name\":\"PLAIN SWEATER SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"91.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"67466475\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (149, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"78\",\"code\":\"67901865\",\"name\":\"STRIPPED SWEATER SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"590.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"21.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-32\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (150, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"92\",\"code\":\"71309061\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"410.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripped-sleeveless-sweater-size-22\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (151, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"79\",\"code\":\"74949490\",\"name\":\"PLAIN SWEATER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"87.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"74949490\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (152, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"100\",\"code\":\"75028015\",\"name\":\"Embroidery Logo\",\"unit\":null,\"cost\":null,\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"75028015\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (153, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"88\",\"code\":\"76076682\",\"name\":\"SCARFS\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"76076682\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (154, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"84\",\"code\":\"77194040\",\"name\":\"STRIPPED SWEATER SIZE 38\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"670.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"32.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"77194040\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (155, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"91\",\"code\":\"81784089\",\"name\":\"PLAIN SLEEVELESS SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"390.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sleeveless-sweater-size-22\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (156, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"71\",\"code\":\"82610024\",\"name\":\"PLAIN SWEATER SIZE 26\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"490.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"133.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"82610024\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (157, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"103\",\"code\":\"83623566\",\"name\":\"PLAIN SLEEVELESS SWEATER SIZE 36\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"590.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sleeveless-sweater-size-36\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (158, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"98\",\"code\":\"84155321\",\"name\":\"STRIPPED SLEEVLESS SWEATER SIZE 32\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"6\",\"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\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripped-sleevless-sweater-size-32\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (159, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"80\",\"code\":\"84932719\",\"name\":\"STRIPPED SWEATER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"620.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"56.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stiped-sweater-size-34\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (160, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"102\",\"code\":\"87507362\",\"name\":\"PLAIN SLEEVELESS SWEATER SIZE 34\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"560.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"6.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"plain-sleeveless-sweater-size-34\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (161, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"96\",\"code\":\"88036635\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"520.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripped-sleeveless-sweater-size-30\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (162, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"68\",\"code\":\"93678803\",\"name\":\"STRIPPED  SWEATER SIZE 22\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"16.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"striped-sweater-size-22\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (163, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"95\",\"code\":\"94638829\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 28\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"490.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"9.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"stripped-sleeveless-sweater-size-28\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (164, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"70\",\"code\":\"98884734\",\"name\":\"STRIPPED SWEATER SIZE 24\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"49.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"98884734\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (165, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"75\",\"code\":\"99187154\",\"name\":\"PLAIN SWEATER SIZE 30\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"540.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"105.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"99187154\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (166, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"94\",\"code\":\"99601902\",\"name\":\"STRIPPED SLEEVELESS SWEATER SIZE 26 \",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"470.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"99601902\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-05 10:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (167, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"37\",\"reference_no\":\"PO2022\\/05\\/0029\",\"date\":\"2022-05-26 17:00:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.0000\",\"paid\":\"540.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"612\",\"purchase_id\":\"37\",\"transfer_id\":null,\"product_id\":\"112\",\"product_code\":\"11234321\",\"product_name\":\"Thread\",\"option_id\":null,\"net_unit_cost\":\"270.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"540.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-26\",\"status\":\"received\",\"unit_cost\":\"270.0000\",\"real_unit_cost\":\"270.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"270.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (168, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"reference_no\":\"PO2022\\/05\\/0028\",\"date\":\"2022-05-23 15:03:00\",\"supplier_id\":\"7\",\"supplier\":\"Spinners\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Robbin&comma; ksh 110&lt;&sol;p&gt;&lt;p&gt;Spinners Ksh 23&comma;826&lt;&sol;p&gt;\",\"total\":\"23936.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"23936.0000\",\"paid\":\"23936.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"610\",\"purchase_id\":\"36\",\"transfer_id\":null,\"product_id\":\"112\",\"product_code\":\"11234321\",\"product_name\":\"Thread\",\"option_id\":null,\"net_unit_cost\":\"11913.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"23826.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-23\",\"status\":\"received\",\"unit_cost\":\"11913.0000\",\"real_unit_cost\":\"11913.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11913.0000\"},{\"id\":\"611\",\"purchase_id\":\"36\",\"transfer_id\":null,\"product_id\":\"112\",\"product_code\":\"11234321\",\"product_name\":\"Thread\",\"option_id\":null,\"net_unit_cost\":\"110.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"110.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-23\",\"status\":\"received\",\"unit_cost\":\"110.0000\",\"real_unit_cost\":\"110.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"110.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (169, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"reference_no\":\"PO2022\\/05\\/0027\",\"date\":\"2022-05-17 17:25:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon Yarn and Canivas&lt;&sol;p&gt;\",\"total\":\"39850.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"39850.0000\",\"paid\":\"39850.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"603\",\"purchase_id\":\"35\",\"transfer_id\":null,\"product_id\":\"111\",\"product_code\":\"22334466\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"19325.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"38650.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-17\",\"status\":\"received\",\"unit_cost\":\"19325.0000\",\"real_unit_cost\":\"19325.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19325.0000\"},{\"id\":\"604\",\"purchase_id\":\"35\",\"transfer_id\":null,\"product_id\":\"111\",\"product_code\":\"22334466\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"1200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1200.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-17\",\"status\":\"received\",\"unit_cost\":\"1200.0000\",\"real_unit_cost\":\"1200.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1200.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (170, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"reference_no\":\"PO2022\\/05\\/0026\",\"date\":\"2022-05-16 18:20:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;White Thread&lt;&sol;p&gt;\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"paid\":\"800.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"599\",\"purchase_id\":\"34\",\"transfer_id\":null,\"product_id\":\"111\",\"product_code\":\"22334466\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"800.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-16\",\"status\":\"received\",\"unit_cost\":\"800.0000\",\"real_unit_cost\":\"800.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"800.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (171, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"reference_no\":\"PO2022\\/05\\/0025\",\"date\":\"2022-05-14 11:05:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Mix Grey and Red&period; 1 Cone each&lt;&sol;p&gt;\",\"total\":\"51240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"51240.0000\",\"paid\":\"51240.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"472\",\"purchase_id\":\"33\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"25200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"25200.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-14\",\"status\":\"received\",\"unit_cost\":\"25200.0000\",\"real_unit_cost\":\"25200.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25200.0000\"},{\"id\":\"473\",\"purchase_id\":\"33\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"26040.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"26040.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-14\",\"status\":\"received\",\"unit_cost\":\"26040.0000\",\"real_unit_cost\":\"26040.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"26040.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (172, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"reference_no\":\"Royal\",\"date\":\"2022-05-12 18:30:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"1840.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1840.0000\",\"paid\":\"1840.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"470\",\"purchase_id\":\"32\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"220.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"220.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"220.0000\",\"real_unit_cost\":\"220.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"220.0000\"},{\"id\":\"471\",\"purchase_id\":\"32\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"1620.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1620.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-12\",\"status\":\"received\",\"unit_cost\":\"1620.0000\",\"real_unit_cost\":\"1620.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1620.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (173, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"reference_no\":\"7\\/5\\/2022\",\"date\":\"2022-05-11 17:19:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"50400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50400.0000\",\"paid\":\"50400.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"6\",\"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\":\"395\",\"purchase_id\":\"22\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"25200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"50400.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-11\",\"status\":\"received\",\"unit_cost\":\"25200.0000\",\"real_unit_cost\":\"25200.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25200.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (174, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"19\",\"reference_no\":\"PO2022\\/05\\/0017\",\"date\":\"2022-05-10 18:13:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"7974.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7974.0000\",\"paid\":\"7974.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-11 17:17:06\",\"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\":\"392\",\"purchase_id\":\"19\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"2258.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"2258.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"2258.0000\",\"real_unit_cost\":\"2258.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2258.0000\"},{\"id\":\"393\",\"purchase_id\":\"19\",\"transfer_id\":null,\"product_id\":\"105\",\"product_code\":\"66561987\",\"product_name\":\"CANVAS MATERIAL\",\"option_id\":null,\"net_unit_cost\":\"1200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1200.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"1200.0000\",\"real_unit_cost\":\"1200.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1200.0000\"},{\"id\":\"394\",\"purchase_id\":\"19\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"2258.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"4516.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"2258.0000\",\"real_unit_cost\":\"2258.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2258.0000\"}]}', '2022-07-05 11:07:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (175, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"reference_no\":\"Safaricom Green, 2 Cone\",\"date\":\"2022-05-10 10:40:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"4516.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4516.0000\",\"paid\":\"4516.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"468\",\"purchase_id\":\"31\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"4516.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"4516.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-10\",\"status\":\"received\",\"unit_cost\":\"4516.0000\",\"real_unit_cost\":\"4516.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4516.0000\"}]}', '2022-07-05 11:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (176, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"reference_no\":\"Canivas\",\"date\":\"2022-05-09 14:35:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"paid\":\"1200.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"467\",\"purchase_id\":\"30\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"1200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1200.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"1200.0000\",\"real_unit_cost\":\"1200.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1200.0000\"}]}', '2022-07-05 11:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (177, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"reference_no\":\"Safaricom Green, 1 Cone\",\"date\":\"2022-05-09 10:17:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"2258.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2258.0000\",\"paid\":\"2258.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-15 14:51:41\",\"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\":\"476\",\"purchase_id\":\"29\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"2258.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"2258.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-09\",\"status\":\"received\",\"unit_cost\":\"2258.0000\",\"real_unit_cost\":\"2258.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2258.0000\"}]}', '2022-07-05 11:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (178, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"reference_no\":\"PO2022\\/05\\/0023\",\"date\":\"2022-05-07 14:30:00\",\"supplier_id\":\"11\",\"supplier\":\"sonny uzi embroidery\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"paid\":\"1620.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"7\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-15 14:49:58\",\"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\":\"475\",\"purchase_id\":\"26\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"270.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"1620.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2022-05-07\",\"status\":\"received\",\"unit_cost\":\"270.0000\",\"real_unit_cost\":\"270.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"270.0000\"}]}', '2022-07-05 11:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (179, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"reference_no\":\"Brown Chocolate\",\"date\":\"2022-05-04 14:10:00\",\"supplier_id\":\"8\",\"supplier\":\"Wall Street\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"paid\":\"800.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"5\",\"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\":\"417\",\"purchase_id\":\"28\",\"transfer_id\":null,\"product_id\":\"106\",\"product_code\":\"12604248\",\"product_name\":\"UZI\",\"option_id\":null,\"net_unit_cost\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"800.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2022-05-04\",\"status\":\"received\",\"unit_cost\":\"800.0000\",\"real_unit_cost\":\"800.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"800.0000\"}]}', '2022-07-05 11:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (180, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"167\",\"date\":\"2022-06-29 18:43:22\",\"reference_no\":\"SALE\\/POS2022\\/06\\/0108\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"180.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"180.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1380.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1380.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\":\"79314c150e451a692cc710afb1d0cecdf2d452a569505c88bcbcd417e6a86f94\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"326\",\"sale_id\":\"167\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"736\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"720.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"120.0000\",\"tax_rate_id\":\"4\",\"tax\":\"20%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"720.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"VT20\",\"tax_name\":\"VAT @20%\",\"tax_rate\":\"20.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"327\",\"sale_id\":\"167\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"736\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"660.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"60.0000\",\"tax_rate_id\":\"2\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"660.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"VAT10\",\"tax_name\":\"VAT @10%\",\"tax_rate\":\"10.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (181, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"166\",\"date\":\"2022-06-29 18:25:34\",\"reference_no\":\"SALE\\/POS2022\\/06\\/0107\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"527.2700\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"52.7300\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"52.7300\",\"shipping\":\"0.0000\",\"grand_total\":\"580.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"3ffde8bbcc75dda7d4f6f0d11a721ae5f797f8d795515583e7268063cc31af7b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"325\",\"sale_id\":\"166\",\"product_id\":\"99\",\"product_code\":\"03515693\",\"product_name\":\"STRIPPED SLEEVELESS SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"980\",\"net_unit_price\":\"527.2700\",\"unit_price\":\"580.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"52.7300\",\"tax_rate_id\":\"2\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"580.0000\",\"serial_no\":\"\",\"real_unit_price\":\"580.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"VAT10\",\"tax_name\":\"VAT @10%\",\"tax_rate\":\"10.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (182, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"165\",\"date\":\"2022-05-28 11:06:14\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0106\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"630.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\":\"44f2b081576ee119196b2b9fc8b6d4e6c35c7374e56d129d627958b7139cabf5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"324\",\"sale_id\":\"165\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (183, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"157\",\"date\":\"2022-05-27 17:50:23\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0105\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"540.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\":\"ce5772fd6b194b9c6e7944a11013519db61ea38693d2fb1698cb3a85cb48ceae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"314\",\"sale_id\":\"157\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"682\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (184, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"155\",\"date\":\"2022-05-26 12:51:04\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0104\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2590.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2590.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"2590.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\":\"afaec72472b4707a07b471d6291ab6e4013012c5c0fdff1878c83f8bf488e4e2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"309\",\"sale_id\":\"155\",\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"577\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"310\",\"sale_id\":\"155\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"630\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (185, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"154\",\"date\":\"2022-05-25 17:14:11\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0103\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"25c954b9aebac9c00c1391d4a1859c0d13c1a644e69665524d9559ad16f61d75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"308\",\"sale_id\":\"154\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"822\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (186, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"153\",\"date\":\"2022-05-24 18:34:52\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0102\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8580.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8580.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"1\",\"paid\":\"8000.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\":\"6ce680ca85d0ade2d8124d63833803b464e5fbc0cb9a95308bb9aa9761d55d53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"306\",\"sale_id\":\"153\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"737\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"307\",\"sale_id\":\"153\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (187, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"151\",\"date\":\"2022-05-24 17:26:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0101\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"37950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"37950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-24 17:38:52\",\"total_items\":\"56\",\"pos\":\"1\",\"paid\":\"8730.0000\",\"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\":\"37e4423bce34137762e92195e22b346a601a289855825fc449b3030cbb4f04bc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"297\",\"sale_id\":\"151\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"737\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"298\",\"sale_id\":\"151\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"299\",\"sale_id\":\"151\",\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"791\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"300\",\"sale_id\":\"151\",\"product_id\":\"107\",\"product_code\":\"57285449\",\"product_name\":\"PLAIN SWEATER SIZE 40\",\"product_type\":\"standard\",\"option_id\":\"1065\",\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"301\",\"sale_id\":\"151\",\"product_id\":\"108\",\"product_code\":\"08702336\",\"product_name\":\"PLAIN SWEATER SIZE 42\",\"product_type\":\"standard\",\"option_id\":\"1081\",\"net_unit_price\":\"850.0000\",\"unit_price\":\"850.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"850.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (188, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"149\",\"date\":\"2022-05-24 09:25:31\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0100\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"1\",\"paid\":\"6500.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\":\"5f7ddb15d6b633b6fdddc0c187ffe94fa3c93d6ddcbc2ac01c5f3e50a8db139f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"282\",\"sale_id\":\"149\",\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"580\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"4200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"283\",\"sale_id\":\"149\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"607\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"2300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (189, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"148\",\"date\":\"2022-05-23 17:47:53\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0099\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"420.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"420.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\":\"99e5ad6f8c946dfb8b9cfc9431e66224838ad1fa6ccab5152f90a44d62860cab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"281\",\"sale_id\":\"148\",\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"576\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (190, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"147\",\"date\":\"2022-05-23 15:27:26\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0098\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"460.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"460.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"460.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\":\"ce6da3d8930abc17e22d3cd0ee7cd34c100a810b42d626d46bd65b086500baf1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"280\",\"sale_id\":\"147\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"609\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (191, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"146\",\"date\":\"2022-05-23 15:17:26\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0097\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1240.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\":\"1bd26bd8159e72521c9950c5bcc95836e00ca5b988e8bd4437c63e1a7c70294b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"277\",\"sale_id\":\"146\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"677\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"278\",\"sale_id\":\"146\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"773\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"279\",\"sale_id\":\"146\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"822\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (192, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"145\",\"date\":\"2022-05-23 15:13:59\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0096\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d46c3e215b404b8d3d06ea48e5b650c1a547bc349bbd4867941a04aa79bd13e9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"276\",\"sale_id\":\"145\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"817\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (193, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"144\",\"date\":\"2022-05-23 15:05:16\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0095\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1030.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1030.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1030.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\":\"e29df75da498c591a25020efb45e5e72ff01ac64b5c2f694bd84c549ec654fb9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"274\",\"sale_id\":\"144\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"635\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"275\",\"sale_id\":\"144\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"689\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (194, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"143\",\"date\":\"2022-05-21 18:04:31\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0094\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4110.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4110.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"4110.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\":\"7f3919bcb526c4dbdda21b4276b2e50a7cdb24caac608901b7892945bfa2f32a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"268\",\"sale_id\":\"143\",\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPPED  SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"595\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"269\",\"sale_id\":\"143\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"622\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"960.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"270\",\"sale_id\":\"143\",\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"647\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"271\",\"sale_id\":\"143\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"659\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"272\",\"sale_id\":\"143\",\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPPED SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"703\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"273\",\"sale_id\":\"143\",\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPPED SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"730\",\"net_unit_price\":\"590.0000\",\"unit_price\":\"590.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"590.0000\",\"serial_no\":\"\",\"real_unit_price\":\"590.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (195, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"142\",\"date\":\"2022-05-21 17:44:59\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0093\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"490.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"490.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\":\"ac32ea7411d1625bc4c4664d74e4d77df59d43209ec6bfbbeef9dbbb0091f780\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"267\",\"sale_id\":\"142\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"638\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (196, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"141\",\"date\":\"2022-05-21 17:41:25\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0092\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"2160.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\":\"f377ca69350ecc8c3f8f5960e7c7c3d2081e11903fa22d7376f9479e4180f057\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"266\",\"sale_id\":\"141\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"698\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (197, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"138\",\"date\":\"2022-05-19 18:13:50\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0091\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11580.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11580.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"1\",\"paid\":\"11580.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\":\"469a90bba808e0244b96e8d7eff10eee3401734e07bac12dbd6058f69e8eb060\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"258\",\"sale_id\":\"138\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"628\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"259\",\"sale_id\":\"138\",\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"654\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"260\",\"sale_id\":\"138\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"664\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"261\",\"sale_id\":\"138\",\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPPED SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"709\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"262\",\"sale_id\":\"138\",\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPPED SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"735\",\"net_unit_price\":\"590.0000\",\"unit_price\":\"590.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"590.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (198, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"137\",\"date\":\"2022-05-19 17:53:06\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0090\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"59903519c83bd16f73c06144f3f238810664f72ca9c3200c0e5e1af9dd54586c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"257\",\"sale_id\":\"137\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"818\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (199, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"136\",\"date\":\"2022-05-19 17:52:15\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0089\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"480.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\":\"19402e1a789d8c8346a5dcc9fc5268302dd703a48f508bdf95e3f2d0eda33ea6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"256\",\"sale_id\":\"136\",\"product_id\":\"90\",\"product_code\":\"27447770\",\"product_name\":\"KIDS TSHIRTS\",\"product_type\":\"standard\",\"option_id\":\"892\",\"net_unit_price\":\"240.0000\",\"unit_price\":\"240.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"240.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (200, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"135\",\"date\":\"2022-05-19 17:49:19\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0088\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"2780.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\":\"05668c9c7b41c56786fa3eefb81e98f992acd3f43cc58060667c8c31ddb557ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"253\",\"sale_id\":\"135\",\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"577\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"254\",\"sale_id\":\"135\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"604\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"255\",\"sale_id\":\"135\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"666\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (201, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"133\",\"date\":\"2022-05-18 17:07:48\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0087\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1050.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\":\"380fe64bdb51aa92d1c8248dea2471e27361b7a194993ff977182eeafd140d50\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"248\",\"sale_id\":\"133\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"669\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"249\",\"sale_id\":\"133\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"687\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (202, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"132\",\"date\":\"2022-05-18 16:03:11\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0086\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1710.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\":\"0d3cd4a0d792edcc9eacbd24839be9bbe074838cb825df93bdaf848b391899f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"247\",\"sale_id\":\"132\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"720\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1710.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (203, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"131\",\"date\":\"2022-05-18 15:47:29\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0085\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"df1e90a7da485c6ce8209dd9dd3805e11768861273cab96f98c26bf8f57b3de2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"246\",\"sale_id\":\"131\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"824\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (204, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"130\",\"date\":\"2022-05-18 15:45:57\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0084\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3e1d7cbc926872ece126c360546e7b13c3976aef7e5bf5024b2da7a98e570fb1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"245\",\"sale_id\":\"130\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"817\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (205, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"129\",\"date\":\"2022-05-18 15:28:02\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0083\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"650.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\":\"b6a43e3b3d3b25e61f61f4923b6a97c24fc1290847547a38970c0b8497ea8b75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"244\",\"sale_id\":\"129\",\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"791\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (206, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"127\",\"date\":\"2022-05-18 14:43:46\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0082\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1740.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1740.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1740.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\":\"2193b9d842b9f16100264c1e40904cc0ccb6f392e930e4a09060a877d1bdc502\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"238\",\"sale_id\":\"127\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"698\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"239\",\"sale_id\":\"127\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"739\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (207, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"126\",\"date\":\"2022-05-17 19:23:21\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0081\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2110.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2110.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"2110.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\":\"dbd83997e8426f8f60582f5620d934b9acf3c7aab44ef30472c10d9f2b788883\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"232\",\"sale_id\":\"126\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"623\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"960.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"233\",\"sale_id\":\"126\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"658\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"234\",\"sale_id\":\"126\",\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STRIPPED SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"757\",\"net_unit_price\":\"620.0000\",\"unit_price\":\"620.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"620.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (208, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"125\",\"date\":\"2022-05-17 13:50:53\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0080\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"950.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\":\"d13c242d21c28855bd84c50547b9727c7e2d4896fb206f242909c42f22bf33f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"230\",\"sale_id\":\"125\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"614\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"231\",\"sale_id\":\"125\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"639\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (209, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"124\",\"date\":\"2022-05-17 11:52:19\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0079\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"600.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\":\"303f69dc86cb8e4bab87e991c4c512b51f74e155bfac75e8221a22de125f4aea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"229\",\"sale_id\":\"124\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"749\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (210, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"122\",\"date\":\"2022-05-16 18:49:04\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0078\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1300.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\":\"413a1ffbccfa3c06108a4fe19e005408394abc58ac61de11ec3b7fc55aa10a83\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"227\",\"sale_id\":\"122\",\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"792\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (211, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"121\",\"date\":\"2022-05-16 17:35:54\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0077\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"06f3bbf47f681a9b9f5fa63260ae8a0cc8f75d7d18e8d37821e062943d6cd9bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"226\",\"sale_id\":\"121\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"818\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (212, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"120\",\"date\":\"2022-05-16 17:34:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0076\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"b34a990871deadef27cfb1a3acdadc2da1ad43c551c13914520162f5daac4d4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"225\",\"sale_id\":\"120\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"821\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (213, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"117\",\"date\":\"2022-05-15 21:53:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0075\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Goods Sold Can Not Be Returned&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"2590.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2590.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-15 22:01:20\",\"total_items\":\"7\",\"pos\":\"1\",\"paid\":\"2590.0000\",\"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\":\"5570543093ef5498f446bc09547e379ab29be2ac9655b350f01b2f022525f54d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"216\",\"sale_id\":\"117\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"614\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"217\",\"sale_id\":\"117\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"630\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"980.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"218\",\"sale_id\":\"117\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"818\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"219\",\"sale_id\":\"117\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"629\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (214, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"115\",\"date\":\"2022-05-14 18:46:57\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0074\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1530.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1530.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\":\"7303736366c30ca47f00684d365c03b641c8f135d89e7345163c481842b9fd08\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"210\",\"sale_id\":\"115\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"676\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (215, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"114\",\"date\":\"2022-05-14 18:21:04\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0073\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1140.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1140.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1140.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\":\"ea8c789170822fe103c1fb33321ce27b914eae1e815633b13f232fa56401cf3a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"209\",\"sale_id\":\"114\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"716\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1140.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (216, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"113\",\"date\":\"2022-05-14 15:20:58\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0072\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"570.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"570.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"570.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\":\"18ed5dc8336ae3bbff7371be48080a1b2eca6bcceae67d7e3d88cc385204b0fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"208\",\"sale_id\":\"113\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"710\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (217, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"112\",\"date\":\"2022-05-14 15:03:48\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0071\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"490.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"490.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\":\"c710f6dfc9f12c2fb0a3547f486ffcf192e36cbd352073050e9b803c58eb289b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"207\",\"sale_id\":\"112\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"639\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (218, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"107\",\"date\":\"2022-05-13 16:02:36\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0070\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d2ae42fd1e3cb91ef3e875b990ec69b5d198d98e6495431b6ff236e444e278f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"201\",\"sale_id\":\"107\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"820\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (219, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"106\",\"date\":\"2022-05-13 12:45:22\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0069\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"2340.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\":\"8d335c45278cf71e6e9e50d5dae0745000206ed0199d15ffe392a822a6003d2e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"199\",\"sale_id\":\"106\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"711\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1140.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"200\",\"sale_id\":\"106\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"737\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (220, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"105\",\"date\":\"2022-05-13 12:42:33\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0068\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4390.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4390.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"4390.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\":\"51aa3f6528982b719640f4cb12401f91b23809362b81fc9c4ca56c804022d062\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"194\",\"sale_id\":\"105\",\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"650\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"195\",\"sale_id\":\"105\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"624\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"196\",\"sale_id\":\"105\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"660\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1060.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"197\",\"sale_id\":\"105\",\"product_id\":\"78\",\"product_code\":\"67901865\",\"product_name\":\"STRIPPED SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"729\",\"net_unit_price\":\"590.0000\",\"unit_price\":\"590.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"590.0000\",\"serial_no\":\"\",\"real_unit_price\":\"590.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"198\",\"sale_id\":\"105\",\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STRIPPED SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"758\",\"net_unit_price\":\"620.0000\",\"unit_price\":\"620.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"620.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (221, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"104\",\"date\":\"2022-05-12 18:43:05\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0067\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6460.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6460.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"6460.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\":\"49a1b14e44c551f8322ef3d23a7860f2bccab4dd8297bcb93c66928f23a6a054\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"191\",\"sale_id\":\"104\",\"product_id\":\"80\",\"product_code\":\"84932719\",\"product_name\":\"STRIPPED SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"759\",\"net_unit_price\":\"620.0000\",\"unit_price\":\"620.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"2480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"620.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"192\",\"sale_id\":\"104\",\"product_id\":\"82\",\"product_code\":\"35420143\",\"product_name\":\"STRIPPED SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"787\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"193\",\"sale_id\":\"104\",\"product_id\":\"84\",\"product_code\":\"77194040\",\"product_name\":\"STRIPPED SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"815\",\"net_unit_price\":\"670.0000\",\"unit_price\":\"670.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"2680.0000\",\"serial_no\":\"\",\"real_unit_price\":\"670.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (222, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"103\",\"date\":\"2022-05-12 18:16:34\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0066\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"460.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"460.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"460.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\":\"968727485aa4d761fd3fb7e6edba4521bbdd3a4c5f64fadf57adfb3e0b32cab9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"184\",\"sale_id\":\"103\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"616\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (223, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"102\",\"date\":\"2022-05-12 18:14:40\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0065\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"490.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"490.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\":\"30101463544c955f40e2701c38dd4f5cd1836aa5bb0ffe7501c46336fccbd23e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"183\",\"sale_id\":\"102\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"633\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (224, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"101\",\"date\":\"2022-05-12 18:12:51\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0064\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a68af0860415be418bc04b226ab86be9ae5fb159d79a4fc9485ea803198a0d79\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"182\",\"sale_id\":\"101\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"821\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (225, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"100\",\"date\":\"2022-05-12 18:09:22\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0063\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1000.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\":\"a83edfb0868c19b9cee02a2dfeef8afe5099634de2f312e355ef074ca513576b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"180\",\"sale_id\":\"100\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"614\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"181\",\"sale_id\":\"100\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"693\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (226, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"99\",\"date\":\"2022-05-12 18:06:45\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0062\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"480.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\":\"32af27d6c8424981ec7eaad172544408906742e4f44660725c58546ea36dfca2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"179\",\"sale_id\":\"99\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"623\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (227, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"98\",\"date\":\"2022-05-12 18:03:59\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0061\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"510.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"510.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\":\"3e3a02df9b00f47de0914108c02bec3ba88cfa7d21ae3428b928589c331e78b7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"178\",\"sale_id\":\"98\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"677\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (228, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"97\",\"date\":\"2022-05-12 18:00:46\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0060\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"290.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"290.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"290.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\":\"38f8ea84ea7e58cab653791ff014bc10e3b3a03fd839ba1d53dde89a0f30d717\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"177\",\"sale_id\":\"97\",\"product_id\":\"89\",\"product_code\":\"34750754\",\"product_name\":\"ADULT TSHIRTS\",\"product_type\":\"standard\",\"option_id\":\"880\",\"net_unit_price\":\"290.0000\",\"unit_price\":\"290.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"290.0000\",\"serial_no\":\"\",\"real_unit_price\":\"290.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (229, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"96\",\"date\":\"2022-05-12 17:53:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0059\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-18 10:37:45\",\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"0.0000\",\"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\":\"431b9481c88715c7804a9301694506c96538d89bfea20b5156dca1e54ac798a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"235\",\"sale_id\":\"96\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"659\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1060.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"236\",\"sale_id\":\"96\",\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"647\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"237\",\"sale_id\":\"96\",\"product_id\":\"70\",\"product_code\":\"98884734\",\"product_name\":\"STRIPPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"622\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"960.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (230, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"86\",\"date\":\"2022-05-11 16:19:44\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0058\",\"customer_id\":\"15\",\"customer\":\"KELVIN\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"530.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\":\"530.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\":\"c329d51973c4e9bd3e4250eeb866e7bef82168fd86af8b9d31be3a47d40e807a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"164\",\"sale_id\":\"86\",\"product_id\":\"73\",\"product_code\":\"25224418\",\"product_name\":\"STRIPPED SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"660\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (231, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"85\",\"date\":\"2022-05-11 16:16:54\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0057\",\"customer_id\":\"15\",\"customer\":\"KELVIN\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"fab92fc7a28599272d1350ef73e2c6fbb200672e4765bf080a926957d737b5fc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"163\",\"sale_id\":\"85\",\"product_id\":\"72\",\"product_code\":\"55828539\",\"product_name\":\"STRIPPED SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"645\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (232, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"84\",\"date\":\"2022-05-11 15:41:59\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0056\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1040.0000\",\"product_discount\":\"40.0000\",\"order_discount_id\":\"\",\"total_discount\":\"40.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1040.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\":\"781ccb8b5f924c1ecd39f680f9aceb2166b2d9e1e9b528202aacc3ec032201f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"161\",\"sale_id\":\"84\",\"product_id\":\"68\",\"product_code\":\"93678803\",\"product_name\":\"STRIPPED  SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"596\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"162\",\"sale_id\":\"84\",\"product_id\":\"104\",\"product_code\":\"33300347\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"1041\",\"net_unit_price\":\"590.0000\",\"unit_price\":\"590.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"40\",\"item_discount\":\"40.0000\",\"subtotal\":\"590.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (233, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"83\",\"date\":\"2022-05-11 15:34:32\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0055\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"980.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"980.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"980.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\":\"3974b2a12f13960cecc550d8d3d8f7b56e9038f4b12f07ef51e2cb25adfb5f8b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"160\",\"sale_id\":\"83\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"644\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"980.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (234, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"72\",\"date\":\"2022-05-10 19:18:27\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0054\",\"customer_id\":\"16\",\"customer\":\"CARO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5570.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5570.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\":\"5570.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\":\"225457b60b697d1b6a47c3c3ebc223e841a2069d8cd8c23fb7cb282e8920fe90\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"147\",\"sale_id\":\"72\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"5570.0000\",\"unit_price\":\"5570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (235, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"71\",\"date\":\"2022-05-10 15:28:08\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0053\",\"customer_id\":\"16\",\"customer\":\"CARO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.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\":\"630.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\":\"1c3997897515b2fa34c0165e162ab8b9f215b3ea98cf26e4315f84b01a7545b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"143\",\"sale_id\":\"71\",\"product_id\":\"104\",\"product_code\":\"33300347\",\"product_name\":\"PLAIN SLEEVLESS SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"1041\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (236, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"70\",\"date\":\"2022-05-10 15:26:25\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0052\",\"customer_id\":\"16\",\"customer\":\"CARO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"460.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"460.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\":\"460.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\":\"f70e074a74c29e3e3507f0a39e0365765975b6198de50418e932a44c0d5739a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"142\",\"sale_id\":\"70\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"603\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (237, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"69\",\"date\":\"2022-05-10 15:25:38\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0051\",\"customer_id\":\"16\",\"customer\":\"CARO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.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\":\"630.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\":\"9d3cc631f4cda88431f832c7921c9d611779ccbb88c49349c7eea1e13d9aef5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"141\",\"sale_id\":\"69\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (238, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"68\",\"date\":\"2022-05-10 15:24:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0050\",\"customer_id\":\"17\",\"customer\":\"wambua\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-10 16:38:33\",\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1620.0000\",\"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\":\"5f6595c4011611814212a3589b8840ac515f40d17bf16712a35d8f1e377a9728\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"144\",\"sale_id\":\"68\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"666\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"145\",\"sale_id\":\"68\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"683\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"146\",\"sale_id\":\"68\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"711\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (239, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"67\",\"date\":\"2022-05-10 15:19:34\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0049\",\"customer_id\":\"16\",\"customer\":\"CARO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1710.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\":\"934586f7a6d03dadac84dd492b235dfde8054c7767025da908709ba269522243\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"136\",\"sale_id\":\"67\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"669\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"137\",\"sale_id\":\"67\",\"product_id\":\"79\",\"product_code\":\"74949490\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"741\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (240, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"66\",\"date\":\"2022-05-10 15:15:07\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0048\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"570.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"570.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\":\"570.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\":\"ed5ffb6b4d5e7781f992d0e5c151ff97e4cd9caf9b375e109b3d3171c4f4034d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"135\",\"sale_id\":\"66\",\"product_id\":\"77\",\"product_code\":\"67466475\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"716\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (241, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"65\",\"date\":\"2022-05-10 15:13:56\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0047\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.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\":\"540.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\":\"8a79947d4655fe9736dface215023d274a3ca60e071e35559ed08f11b93d12b2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"134\",\"sale_id\":\"65\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"687\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (242, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"64\",\"date\":\"2022-05-10 15:07:43\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0046\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"1\",\"paid\":\"2400.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\":\"ef3c45866c43e7b69cb9d0b7f5425dc811866c8ee176c58759a839e731755ccc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"133\",\"sale_id\":\"64\",\"product_id\":\"85\",\"product_code\":\"57082232\",\"product_name\":\"MARVINS\",\"product_type\":\"standard\",\"option_id\":\"822\",\"net_unit_price\":\"80.0000\",\"unit_price\":\"80.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"80.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"30.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (243, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"60\",\"date\":\"2022-05-09 19:27:41\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0045\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"2350.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\":\"af3a079c71964eb273b559c71d4c19b01dd96852139339bccd93d33fc766bb19\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"108\",\"sale_id\":\"60\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"763\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"109\",\"sale_id\":\"60\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"681\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"110\",\"sale_id\":\"60\",\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"802\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"111\",\"sale_id\":\"60\",\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"703\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (244, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"59\",\"date\":\"2022-05-09 19:17:45\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0044\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5140.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5140.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"5140.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\":\"fa36470e1bf2e014ab7a212e42800a70797843fb8e1beefbc524fe15b9bf7035\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"106\",\"sale_id\":\"59\",\"product_id\":\"81\",\"product_code\":\"04922238\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"774\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1890.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"107\",\"sale_id\":\"59\",\"product_id\":\"83\",\"product_code\":\"33727909\",\"product_name\":\"PLAIN SWEATER SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"802\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (245, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"58\",\"date\":\"2022-05-09 19:14:39\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0043\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1050.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\":\"30bade464f918df50169e3d27fc30e53a084f879b4a39980e0ef6be9637ce4ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"104\",\"sale_id\":\"58\",\"product_id\":\"76\",\"product_code\":\"45799187\",\"product_name\":\"STRIPED SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"709\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"105\",\"sale_id\":\"58\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"632\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (246, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"43\",\"date\":\"2022-05-07 19:35:34\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0042\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2820.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2820.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"2820.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\":\"d0bdd7a2abd02c6676c379c84405064a3daa7999fd8d56d32b14aaa46f3a4bec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"85\",\"sale_id\":\"43\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"389\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"86\",\"sale_id\":\"43\",\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"208\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"87\",\"sale_id\":\"43\",\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"282\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"88\",\"sale_id\":\"43\",\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"244\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"89\",\"sale_id\":\"43\",\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"287\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (247, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"42\",\"date\":\"2022-05-07 19:22:34\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0041\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"33\",\"pos\":\"1\",\"paid\":\"14860.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\":\"d71fb16e3bc543caeaa703aae9c1567c4433a973dc4717a4ec66df30a1127abe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"74\",\"sale_id\":\"42\",\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"product_type\":\"standard\",\"option_id\":\"222\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"75\",\"sale_id\":\"42\",\"product_id\":\"24\",\"product_code\":\"77317537\",\"product_name\":\"STRIPED SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"282\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"76\",\"sale_id\":\"42\",\"product_id\":\"25\",\"product_code\":\"68610048\",\"product_name\":\"STRIPED SWEATER SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"244\",\"net_unit_price\":\"480.0000\",\"unit_price\":\"480.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"480.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"77\",\"sale_id\":\"42\",\"product_id\":\"28\",\"product_code\":\"49512078\",\"product_name\":\"STRIPED SWEATER SIZE 28 \",\"product_type\":\"standard\",\"option_id\":\"215\",\"net_unit_price\":\"530.0000\",\"unit_price\":\"530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"78\",\"sale_id\":\"42\",\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"225\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"79\",\"sale_id\":\"42\",\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"170\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"80\",\"sale_id\":\"42\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"323\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"81\",\"sale_id\":\"42\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"320\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"82\",\"sale_id\":\"42\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"323\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"83\",\"sale_id\":\"42\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"383\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"84\",\"sale_id\":\"42\",\"product_id\":\"62\",\"product_code\":\"17641369\",\"product_name\":\"KIDS TSHIRT\",\"product_type\":\"standard\",\"option_id\":\"544\",\"net_unit_price\":\"240.0000\",\"unit_price\":\"240.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"240.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (248, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"41\",\"date\":\"2022-05-07 19:03:08\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0040\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"840.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"840.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"840.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\":\"1740dc396d993e9a81362011d30d61b08a2f20e97f26038a28b02122ce32a437\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"73\",\"sale_id\":\"41\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"396\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (249, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"40\",\"date\":\"2022-05-07 18:59:06\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0039\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1020.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1020.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1020.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\":\"65f9e3970344fe43ba29c316ca2cd47151909256d7cd6f676a105d543fd72abf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"72\",\"sale_id\":\"40\",\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"205\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (250, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"39\",\"date\":\"2022-05-07 18:57:48\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0038\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"510.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\":\"510.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\":\"b7aa8471179c5369696e5abee59aa8a45f9d7a9fba393a9500be076401fcc31f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"71\",\"sale_id\":\"39\",\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"205\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (251, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"38\",\"date\":\"2022-05-07 18:54:21\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0037\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"510.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\":\"510.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\":\"8b36a92d04b4f7db2abcf8d40c2a7daa12a233fd24089004f8c4068b4b31a963\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"70\",\"sale_id\":\"38\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"319\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (252, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"37\",\"date\":\"2022-05-07 18:52:14\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0036\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.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\":\"630.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\":\"536123260995b4c1081b9f4beba63d6f373bc4200ef1c5513b74bdc205ddf523\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"69\",\"sale_id\":\"37\",\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"170\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (253, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-05-06 18:39:55\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0035\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"3160.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\":\"a746aff5cd26db7c3e29eb0b039e47ae2a008f69ea14cd2d82c8cf9421c8da33\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"64\",\"sale_id\":\"36\",\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"199\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"65\",\"sale_id\":\"36\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"100\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"66\",\"sale_id\":\"36\",\"product_id\":\"27\",\"product_code\":\"47227051\",\"product_name\":\"STRIPED SWEATR SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"208\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"67\",\"sale_id\":\"36\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"93\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"68\",\"sale_id\":\"36\",\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"251\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (254, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"date\":\"2022-05-06 16:08:12\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0034\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"389aac949b77e14c59a3fe15894d77435945c5ecf714190ad2f99decdc009dae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"63\",\"sale_id\":\"35\",\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"product_type\":\"standard\",\"option_id\":\"333\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (255, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-05-06 11:57:41\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0033\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4890.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4890.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"4890.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\":\"bf6611c2295b8c180b30dbdccf67a9b08db491b2fc13ed7259f7f31c6f0606fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"61\",\"sale_id\":\"34\",\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"200\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2940.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"62\",\"sale_id\":\"34\",\"product_id\":\"37\",\"product_code\":\"38548971\",\"product_name\":\"STRIPED SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"162\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (256, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-05-06 11:52:59\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0032\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.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\":\"630.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\":\"53a1b7e0a0b44572354f53f897384c00efd44b4bdb80f8170d90cda450d73b5b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"60\",\"sale_id\":\"33\",\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"168\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (257, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"date\":\"2022-05-05 18:28:34\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0031\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1990.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1990.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"1990.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\":\"dc16391c051d4310e003d4ee0812144aa5c4847fd44982fcf405cedc95b3ec4b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"58\",\"sale_id\":\"32\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"93\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"59\",\"sale_id\":\"32\",\"product_id\":\"63\",\"product_code\":\"25517885\",\"product_name\":\"ADULTS TSHIRTS\",\"product_type\":\"standard\",\"option_id\":\"557\",\"net_unit_price\":\"290.0000\",\"unit_price\":\"290.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"290.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (258, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-05-05 17:24:08\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0030\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"5000.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\":\"c279528b649a1534dbcf312d0aa28357adf4d128ac37f71733174b199eb120b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"54\",\"sale_id\":\"31\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"109\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"55\",\"sale_id\":\"31\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"155\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"56\",\"sale_id\":\"31\",\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"202\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1470.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"57\",\"sale_id\":\"31\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"323\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (259, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-05-05 16:24:54\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0029\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"510.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"510.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\":\"52d2e188359dc30a2a1f5b817f3651bffd47de60bd1e7663e9823854a4e70745\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"53\",\"sale_id\":\"30\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"325\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (260, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-05-05 16:07:45\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"630.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\":\"6bc20b3860b6255d83c238ccec30829afe6f2733433ac3e99680cdab313dbf68\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"52\",\"sale_id\":\"29\",\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"174\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (261, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-05-05 16:06:02\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0027\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"560.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\":\"16130a787a3cbb6cd28aab5fb21a387eef3dc9724128ce1d6118695b3e9a3607\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"51\",\"sale_id\":\"28\",\"product_id\":\"51\",\"product_code\":\"67406358\",\"product_name\":\"PLAIN SLEEVLESS SWETER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"420\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (262, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-05-05 13:59:23\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.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\":\"540.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\":\"15a8afcf5fd424aacffa39844720bc2cd9693125eca070a72d3e6f726ef492e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"43\",\"sale_id\":\"27\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"104\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (263, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-05-05 13:57:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0025\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-05 14:34:52\",\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"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\":\"5b9bc6d51f78d530acc838f5f41c4a136a87092e32a70ceb6cd2d4502212ee4d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"44\",\"sale_id\":\"26\",\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"product_type\":\"standard\",\"option_id\":\"333\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (264, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-05-05 13:56:45\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0024\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"460.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"460.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\":\"460.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\":\"c7ec212ac3778a6c2967f1cd6cffabf852e32aa14072784ebaa6235a106a70a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"41\",\"sale_id\":\"25\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"155\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (265, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-05-05 13:55:28\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"520.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9bbaab16f59d5f22d8cafea26b38c95aa8e218560877b31ae5a3fe8c42f4d927\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"39\",\"sale_id\":\"24\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"382\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"40\",\"sale_id\":\"24\",\"product_id\":\"47\",\"product_code\":\"10407222\",\"product_name\":\" MARVINS\",\"product_type\":\"standard\",\"option_id\":\"327\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (266, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-05-05 12:34:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2060.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2060.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-05 15:38:04\",\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"2060.0000\",\"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\":\"36e5c9123705d92ef7ea6322bb4750b4343dea45ee74e80007ffc182d1549c6f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"48\",\"sale_id\":\"23\",\"product_id\":\"36\",\"product_code\":\"44501722\",\"product_name\":\"PLAIN SWEATER SIZE 36\",\"product_type\":\"standard\",\"option_id\":\"170\",\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"49\",\"sale_id\":\"23\",\"product_id\":\"63\",\"product_code\":\"25517885\",\"product_name\":\"ADULTS TSHIRTS\",\"product_type\":\"standard\",\"option_id\":\"557\",\"net_unit_price\":\"290.0000\",\"unit_price\":\"290.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"870.0000\",\"serial_no\":\"\",\"real_unit_price\":\"290.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"50\",\"sale_id\":\"23\",\"product_id\":\"51\",\"product_code\":\"67406358\",\"product_name\":\"PLAIN SLEEVLESS SWETER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"420\",\"net_unit_price\":\"560.0000\",\"unit_price\":\"560.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"560.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (267, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-05-05 12:26:37\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0021\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"3050.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\":\"43f16945da89219a77ab5b95b0a5b46d3c9beda6ef17cf720536e1991ebb5b87\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"33\",\"sale_id\":\"22\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"320\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"34\",\"sale_id\":\"22\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"104\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"35\",\"sale_id\":\"22\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"150\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (268, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-05-05 10:09:19\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"420.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\":\"420.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\":\"eab70067c126b7c041ac8a661ce9ba075d9dcbdfbc32ea9e7c0c51832d83d51e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"32\",\"sale_id\":\"21\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"389\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (269, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-05-05 09:16:26\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0019\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"980.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"980.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"980.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\":\"746215d86cb448234dda6f8debde267a90e975eee387345db071c1acc0576223\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"31\",\"sale_id\":\"20\",\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"188\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"980.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (270, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"19\",\"date\":\"2022-05-04 18:36:52\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0018\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"7\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1630.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\":\"485045f806cfee6d4529864de428f5e37f4a1ffc1386aad5be145bca473f701d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"28\",\"sale_id\":\"19\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"141\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"29\",\"sale_id\":\"19\",\"product_id\":\"32\",\"product_code\":\"64550743\",\"product_name\":\"PLAIN SWEATER SIZE 32\",\"product_type\":\"standard\",\"option_id\":\"252\",\"net_unit_price\":\"570.0000\",\"unit_price\":\"570.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"570.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"30\",\"sale_id\":\"19\",\"product_id\":\"34\",\"product_code\":\"60633359\",\"product_name\":\"PLAIN SWEATER SIZE 34\",\"product_type\":\"standard\",\"option_id\":\"224\",\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (271, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"18\",\"date\":\"2022-05-04 18:21:12\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0017\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"920.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\":\"cfbf156fbcb258f55f39237bacc61f1130cd485854e659f66bebe7341763e7ab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"27\",\"sale_id\":\"18\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"139\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (272, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"17\",\"date\":\"2022-05-04 18:16:23\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0016\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"920.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\":\"b8bb0b7ccb013904ff00ddc72e48813c74a7bd1efea720b3895bda896eb1804a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"26\",\"sale_id\":\"17\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"139\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (273, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"16\",\"date\":\"2022-05-04 18:14:38\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0015\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1300.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\":\"660687966ed49357b05c592f5456dde60d1258fc7bf257708465ffdf8769e0f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"24\",\"sale_id\":\"16\",\"product_id\":\"22\",\"product_code\":\"17968457\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"382\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"25\",\"sale_id\":\"16\",\"product_id\":\"23\",\"product_code\":\"37994160\",\"product_name\":\"PLAIN SWEATERS SIZE 24\",\"product_type\":\"standard\",\"option_id\":\"139\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"460.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (274, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"15\",\"date\":\"2022-05-04 18:13:00\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0014\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1030.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1030.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1030.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\":\"f2f118dfece5d8035bd524450ae14be8e1dde9b6d220cda48e302a05139ed8ca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"22\",\"sale_id\":\"15\",\"product_id\":\"26\",\"product_code\":\"46051194\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"197\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"490.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"23\",\"sale_id\":\"15\",\"product_id\":\"30\",\"product_code\":\"21946262\",\"product_name\":\"plain sweater size 30\",\"product_type\":\"standard\",\"option_id\":\"93\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (275, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"14\",\"date\":\"2022-05-04 18:10:07\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0013\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3760.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3760.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"3760.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\":\"189b7ca7e4d03d650e43e46ef5daf9877f66ac75362cfe5507547bc08bc9e03b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"20\",\"sale_id\":\"14\",\"product_id\":\"39\",\"product_code\":\"30776567\",\"product_name\":\"PLAIN SWEATERS SIZE 38\",\"product_type\":\"standard\",\"option_id\":\"133\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"21\",\"sale_id\":\"14\",\"product_id\":\"29\",\"product_code\":\"86352855\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"320\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (276, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"162\",\"date\":\"2022-05-27 17:17:00\",\"reference_no\":\"SALE2022\\/05\\/0054\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2050.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\":\"b2e0b57b98588a62e09cf301f5684b3c05a5ca92677a443371d7e906d59ef339\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"319\",\"sale_id\":\"162\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"2050.0000\",\"unit_price\":\"2050.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2050.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (277, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"161\",\"date\":\"2022-05-27 17:17:00\",\"reference_no\":\"SALE2022\\/05\\/0053\",\"customer_id\":\"17\",\"customer\":\"Scouts Kenya\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"720.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"720.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"24\",\"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\":\"a8ab0ba4cfb776cc9e148ffa788544ec438c953d714f65613d72777b5509c92a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"318\",\"sale_id\":\"161\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"720.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"24.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (278, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"160\",\"date\":\"2022-05-26 16:56:00\",\"reference_no\":\"SALE2022\\/05\\/0052\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"150.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\":\"399b125fc001b5af16fe21a052f2c3385566fe6033f0f9303250770bc0ee83e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"317\",\"sale_id\":\"160\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (279, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"159\",\"date\":\"2022-05-26 16:51:00\",\"reference_no\":\"SALE2022\\/05\\/0051\",\"customer_id\":\"15\",\"customer\":\"FAO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"40\",\"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\":\"76fe181794a55ac4608b1f54e6a75855f7908193ca1c7e37ca88bcd61c79ac0a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"316\",\"sale_id\":\"159\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (280, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"158\",\"date\":\"2022-05-25 16:49:00\",\"reference_no\":\"SALE2022\\/05\\/0050\",\"customer_id\":\"15\",\"customer\":\"FAO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5640.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5640.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-27 20:43:14\",\"total_items\":\"94\",\"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\":\"cb3964ca39b681a53c5d00c54077a15eee3e8fd9ca8161c7d97cd105f470f958\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"323\",\"sale_id\":\"158\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"94.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5640.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"94.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (281, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"164\",\"date\":\"2022-05-24 17:33:00\",\"reference_no\":\"SALE2022\\/05\\/0056\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"550.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"550.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\":\"3d053fcf189ec10839e4062acc3b5e4cad31ba6d3edfe98174296d9a232f0cda\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"322\",\"sale_id\":\"164\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"550.0000\",\"unit_price\":\"550.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"550.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (282, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"163\",\"date\":\"2022-05-24 17:31:00\",\"reference_no\":\"SALE2022\\/05\\/0055\",\"customer_id\":\"15\",\"customer\":\"FAO\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"840.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"840.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"1c6d706df0099ce4a00cbf3ed062a7ceddc7b5a1a3b74226cdd3237f19fd128d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"321\",\"sale_id\":\"163\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"70.0000\",\"unit_price\":\"70.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"70.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (283, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"156\",\"date\":\"2022-05-24 12:43:00\",\"reference_no\":\"SALE2022\\/05\\/0049\",\"customer_id\":\"17\",\"customer\":\"Scouts Kenya\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-27 20:31:01\",\"total_items\":\"72\",\"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\":\"f5ff5f9a7d880b717a9b9973c410e28ff3eeb20856a7e311bfd1a6d8cbb41456\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"320\",\"sale_id\":\"156\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"72.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"72.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (284, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"152\",\"date\":\"2022-05-23 14:54:00\",\"reference_no\":\"SALE2022\\/05\\/0048\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"87\",\"pos\":\"0\",\"paid\":\"330.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\":\"137bc95d97dd9cce8771fa21d81f13f8c70e8d9f0e8c0c10a368823ac7310a6e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"302\",\"sale_id\":\"152\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"280.0000\",\"unit_price\":\"280.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"280.0000\",\"serial_no\":\"\",\"real_unit_price\":\"280.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"303\",\"sale_id\":\"152\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"80.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"304\",\"sale_id\":\"152\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"270.0000\",\"unit_price\":\"270.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"270.0000\",\"serial_no\":\"\",\"real_unit_price\":\"270.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"305\",\"sale_id\":\"152\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (285, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"150\",\"date\":\"2022-05-21 13:51:00\",\"reference_no\":\"SALE2022\\/05\\/0047\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-24 16:59:40\",\"total_items\":\"43\",\"pos\":\"0\",\"paid\":\"1230.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\":\"a3c22bae373c36f55c21f967b06eb3f7c40e2db359290920f82c0bf0b523cf0f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"288\",\"sale_id\":\"150\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1230.0000\",\"unit_price\":\"1230.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1230.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1230.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"289\",\"sale_id\":\"150\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"70.0000\",\"unit_price\":\"70.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"70.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"290\",\"sale_id\":\"150\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (286, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"140\",\"date\":\"2022-05-20 17:45:00\",\"reference_no\":\"SALE2022\\/05\\/0046\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"31\",\"pos\":\"0\",\"paid\":\"5340.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\":\"3278494403222549f693324b1b90a248acb47c7904752e2792faa07fc9542cc6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"264\",\"sale_id\":\"140\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1340.0000\",\"unit_price\":\"1340.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1340.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"265\",\"sale_id\":\"140\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"230.0000\",\"unit_price\":\"230.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"230.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"30.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (287, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"139\",\"date\":\"2022-05-19 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0045\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1100.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\":\"9614cb58c4104948c0d6891664bcad83d0c2a264f8b84f3907482a09b0b2f3ee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"263\",\"sale_id\":\"139\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1100.0000\",\"unit_price\":\"1100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (288, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"134\",\"date\":\"2022-05-18 20:28:00\",\"reference_no\":\"SALE2022\\/05\\/0044\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"48\",\"pos\":\"0\",\"paid\":\"2160.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\":\"fb363fbf6bd49d82ec9952d4679aa344b158f8a3034b36f491ef5af0f36f340c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"250\",\"sale_id\":\"134\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"2160.0000\",\"unit_price\":\"2160.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2160.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"251\",\"sale_id\":\"134\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"37.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"252\",\"sale_id\":\"134\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"70.0000\",\"unit_price\":\"70.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"70.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (289, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"128\",\"date\":\"2022-05-17 17:15:00\",\"reference_no\":\"SALE2022\\/05\\/0043\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"1770.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\":\"fee45165f1889f8978e1e59a0f558f59902899fdc1d7f0eeac72d792920c8a52\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"240\",\"sale_id\":\"128\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"241\",\"sale_id\":\"128\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"242\",\"sale_id\":\"128\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"13.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"243\",\"sale_id\":\"128\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1070.0000\",\"unit_price\":\"1070.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1070.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1070.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (290, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"123\",\"date\":\"2022-05-16 18:07:00\",\"reference_no\":\"SALE2022\\/05\\/0042\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3910.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3910.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"3910.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\":\"c1c0e973582b7e174b388fb3f205a1631beda93205379d7a07ce2ab34f626f85\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"228\",\"sale_id\":\"123\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"3910.0000\",\"unit_price\":\"3910.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3910.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3910.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (291, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"119\",\"date\":\"2022-05-15 19:12:00\",\"reference_no\":\"SALE2022\\/05\\/0041\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1250.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\":\"71bc40f2643db75333b7720a913ace67ee8aec00bb75b3c76bf86f84a8f296bb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"224\",\"sale_id\":\"119\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1250.0000\",\"unit_price\":\"1250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (292, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"116\",\"date\":\"2022-05-14 20:38:00\",\"reference_no\":\"SALE2022\\/05\\/0040\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"&lt;p&gt;Ksh 2050 paid via Cash&lt;&sol;p&gt;&lt;p&gt;Ksh 7750 Paid Via Mpesa&lt;&sol;p&gt;\",\"total\":\"9800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"9800.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\":\"d36dbe3dadd16a1c35bb34c884eddf5194eb92ebe58b4d506f60d4007954b947\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"211\",\"sale_id\":\"116\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"2050.0000\",\"unit_price\":\"2050.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2050.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"212\",\"sale_id\":\"116\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"7750.0000\",\"unit_price\":\"7750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (293, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"111\",\"date\":\"2022-05-13 17:29:00\",\"reference_no\":\"SALE2022\\/05\\/0039\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"7860.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\":\"d905016399c1c46517603e36d1d6ac5a837907f0ddb0e0651da2a3b4f6a6cfb3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"206\",\"sale_id\":\"111\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"7860.0000\",\"unit_price\":\"7860.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7860.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7860.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (294, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"110\",\"date\":\"2022-05-12 17:25:00\",\"reference_no\":\"SALE2022\\/05\\/0038\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"2200.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\":\"62567f4eb067ff26667dc939787a8bbc6d68e087dbc7e4648aaac7fc600f49e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"205\",\"sale_id\":\"110\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (295, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"109\",\"date\":\"2022-05-12 17:25:00\",\"reference_no\":\"SALE2022\\/05\\/0037\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"5700.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\":\"3a6092d1d10aea2e93ed80efb702f629470b6c146462dfbd62e68a86f6b314fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"204\",\"sale_id\":\"109\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"5700.0000\",\"unit_price\":\"5700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (296, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"108\",\"date\":\"2022-05-12 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0036\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-13 20:26:05\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2500.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\":\"b2bcd226bbae138fa1981cb0b289d490f0e568e92bc95f0989d39e07497621ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"203\",\"sale_id\":\"108\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (297, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"63\",\"date\":\"2022-05-10 14:12:00\",\"reference_no\":\"SALE2022\\/05\\/0016\",\"customer_id\":\"15\",\"customer\":\"KELVIN\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"7490.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\":\"e6e3c8610ef9b2d885a57ea4b3ca1d8daf1946b8c935772078aa8338074a9c82\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"118\",\"sale_id\":\"63\",\"product_id\":\"67\",\"product_code\":\"55642863\",\"product_name\":\"PLAIN SWEATER SIZE 22\",\"product_type\":\"standard\",\"option_id\":\"586\",\"net_unit_price\":\"420.0000\",\"unit_price\":\"420.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"420.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"6.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"119\",\"sale_id\":\"63\",\"product_id\":\"69\",\"product_code\":\"34018336\",\"product_name\":\"PLAIN SWEATER SIZE 24 \",\"product_type\":\"standard\",\"option_id\":\"612\",\"net_unit_price\":\"460.0000\",\"unit_price\":\"460.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"460.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"120\",\"sale_id\":\"63\",\"product_id\":\"71\",\"product_code\":\"82610024\",\"product_name\":\"PLAIN SWEATER SIZE 26\",\"product_type\":\"standard\",\"option_id\":\"640\",\"net_unit_price\":\"490.0000\",\"unit_price\":\"490.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1470.0000\",\"serial_no\":\"\",\"real_unit_price\":\"490.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"121\",\"sale_id\":\"63\",\"product_id\":\"74\",\"product_code\":\"58505902\",\"product_name\":\"PLAIN SWEATER SIZE 28\",\"product_type\":\"standard\",\"option_id\":\"675\",\"net_unit_price\":\"510.0000\",\"unit_price\":\"510.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"510.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"122\",\"sale_id\":\"63\",\"product_id\":\"75\",\"product_code\":\"99187154\",\"product_name\":\"PLAIN SWEATER SIZE 30\",\"product_type\":\"standard\",\"option_id\":\"699\",\"net_unit_price\":\"540.0000\",\"unit_price\":\"540.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"540.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (298, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"62\",\"date\":\"2022-05-10 13:55:00\",\"reference_no\":\"red flees\",\"customer_id\":\"15\",\"customer\":\"KELVIN\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16140.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16140.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"6\",\"updated_by\":\"6\",\"updated_at\":\"2022-05-10 14:42:57\",\"total_items\":\"239\",\"pos\":\"0\",\"paid\":\"14300.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\":\"529efae056b72640004a0e99b013d93cacd145b6e4bb114f00bc8e39ead29e1b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"128\",\"sale_id\":\"62\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"rass\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"129\",\"sale_id\":\"62\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"94.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5640.0000\",\"serial_no\":\"track logo\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"94.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"130\",\"sale_id\":\"62\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"59.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3540.0000\",\"serial_no\":\"freece red\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"59.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"131\",\"sale_id\":\"62\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"90.0000\",\"unit_price\":\"90.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"tshirts\",\"real_unit_price\":\"90.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"132\",\"sale_id\":\"62\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1320.0000\",\"serial_no\":\"nawiri   junior\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"22.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (299, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"95\",\"date\":\"2022-05-09 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0035\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5810.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5810.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"5810.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\":\"73b3cc0dd75663dae5a77db87dd3d705839b99ac5b45ca231450e11c2857abb8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"173\",\"sale_id\":\"95\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"5810.0000\",\"unit_price\":\"5810.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5810.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5810.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (300, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"93\",\"date\":\"2022-05-07 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0033\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7530.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"7530.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\":\"362204ca5a621fd23bfd1de320c96a77b0093d70a49ecb4f5f2cc33c4590a9f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"171\",\"sale_id\":\"93\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"7530.0000\",\"unit_price\":\"7530.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7530.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7530.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (301, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"92\",\"date\":\"2022-05-06 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0032\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1350.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\":\"7257ce744b511a46226e342f599b9fe1bf00cbc617fe977d3c75809ea8e7e5bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"170\",\"sale_id\":\"92\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (302, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"91\",\"date\":\"2022-05-05 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0031\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"1600.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\":\"64bb734d987b1ca475262d332614b2ec34a6dd3ef6d7caf345161b27be4eab89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"169\",\"sale_id\":\"91\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (303, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"90\",\"date\":\"2022-05-04 17:00:00\",\"reference_no\":\"SALE2022\\/05\\/0030\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"7300.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\":\"3c88b44c735783431ab641e25af01113b59e1844a7b9ced324b24a37457a7849\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"168\",\"sale_id\":\"90\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (304, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"89\",\"date\":\"2022-05-03 12:31:00\",\"reference_no\":\"SALE2022\\/05\\/0029\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"6700.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\":\"dca1ef4ab981d4da23f82a67392460df3f1bd8aea8dfa0fb64e2fbebd56b6373\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"167\",\"sale_id\":\"89\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"6700.0000\",\"unit_price\":\"6700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (305, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"88\",\"date\":\"2022-05-02 12:29:00\",\"reference_no\":\"SALE2022\\/05\\/0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"28\",\"pos\":\"0\",\"paid\":\"5600.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\":\"08c5460382d39eaad914bceb2e1784e49e649eb29aee0489667370b1a4cb1d6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"166\",\"sale_id\":\"88\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"28.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (306, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"87\",\"date\":\"2022-05-01 12:28:00\",\"reference_no\":\"SALE2022\\/05\\/0027\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"600.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\":\"a334650eea6f0a610f497266da7f9aaf122cef887eef874954a7054f3011bf31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"165\",\"sale_id\":\"87\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (307, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"82\",\"date\":\"2022-04-30 20:26:00\",\"reference_no\":\"SALE2022\\/05\\/0026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6190.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6190.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"6190.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\":\"d4a1b71348aa3eb7e83c7c11acfa6ceda81d781e70d41a986d6ec16ded6f8dfb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"159\",\"sale_id\":\"82\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"6190.0000\",\"unit_price\":\"6190.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6190.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6190.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (308, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"81\",\"date\":\"2022-04-29 20:00:00\",\"reference_no\":\"SALE2022\\/05\\/0025\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6940.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6940.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"6940.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\":\"b7e4f73686fa0d88242dbeaedd2fa4863833c2a198623e14c429704ebb9bfe04\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"158\",\"sale_id\":\"81\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"6940.0000\",\"unit_price\":\"6940.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6940.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6940.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (309, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"80\",\"date\":\"2022-04-27 19:52:00\",\"reference_no\":\"SALE2022\\/05\\/0024\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"8200.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\":\"17e135bf8be2ada33f32244c312a065a55849e825136cc95f00585d9cb847a21\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"157\",\"sale_id\":\"80\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"8200.0000\",\"unit_price\":\"8200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (310, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"79\",\"date\":\"2022-04-26 19:50:00\",\"reference_no\":\"SALE2022\\/05\\/0023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3975.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3975.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"3975.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\":\"aa055fab6ff6909b29242511a64a90a9e47e9d6328ab1da9e4ced241ef8ab48b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"156\",\"sale_id\":\"79\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"3975.0000\",\"unit_price\":\"3975.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3975.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3975.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (311, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"78\",\"date\":\"2022-04-25 19:49:00\",\"reference_no\":\"SALE2022\\/05\\/0022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"13630.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\":\"eddb4a46ebf2ebdffedba88579ef5b3f01f713ea0e2597398fbfaaf4967d4b5a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"155\",\"sale_id\":\"78\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"13630.0000\",\"unit_price\":\"13630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"13630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (312, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"77\",\"date\":\"2022-04-24 19:47:00\",\"reference_no\":\"SALE2022\\/05\\/0021\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9020.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9020.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"9020.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\":\"bd5d57572d80f8c55e93063da74ae0c83b56aa05063e1a0f7e0a7c830df562f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"154\",\"sale_id\":\"77\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"9020.0000\",\"unit_price\":\"9020.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9020.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9020.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (313, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"76\",\"date\":\"2022-04-23 19:30:00\",\"reference_no\":\"SALE2022\\/05\\/0020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"&lt;p&gt;Collect Total of Payments&lt;&sol;p&gt;\",\"total\":\"9900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"9900.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\":\"aa71298c03b9ce8ba5f445e66a09ef5069264e5d3686e40afcd4883a183ce437\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"153\",\"sale_id\":\"76\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (314, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"75\",\"date\":\"2022-04-22 18:27:00\",\"reference_no\":\"SALE2022\\/05\\/0019\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4740.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4740.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"4740.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\":\"056f23b910ceb4a4ea890a75a3a9cf5cd85d75f437c1dff2b9bfb367ea096348\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"152\",\"sale_id\":\"75\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"4740.0000\",\"unit_price\":\"4740.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4740.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4740.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (315, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"74\",\"date\":\"2022-04-21 19:20:00\",\"reference_no\":\"SALE2022\\/05\\/0018\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"&lt;p&gt;Collective total for the day for Marking&lt;&sol;p&gt;\",\"total\":\"1770.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1770.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":\"5\",\"updated_at\":\"2022-05-10 22:27:31\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1770.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\":\"27b67c43cc1b5d6c00f21f9af61bc92626d81ace28ab20a52a3c5fa38306b920\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"151\",\"sale_id\":\"74\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1770.0000\",\"unit_price\":\"1770.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1770.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1770.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (316, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"73\",\"date\":\"2022-04-21 18:00:00\",\"reference_no\":\"SALE2022\\/05\\/0017\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Lot&comma; a compilation of all logos&bsol;&apos; for the day&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"3050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"3050.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\":\"51767599f61f2b9a4eed74573782dbbe93fb9f1b007b4d43a7b884e8a55dd09d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"148\",\"sale_id\":\"73\",\"product_id\":\"100\",\"product_code\":\"75028015\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"3050.0000\",\"unit_price\":\"3050.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3050.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (317, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"57\",\"date\":\"2022-04-20 15:05:00\",\"reference_no\":\"SALE2022\\/05\\/0015\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"70.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"70.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"70.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\":\"c305fc1ebc62ab3148604521d072ed9b4b4119ef3c2323537db72e16148d4cb2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"103\",\"sale_id\":\"57\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"70.0000\",\"unit_price\":\"70.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"70.0000\",\"serial_no\":\"\",\"real_unit_price\":\"70.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (318, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"56\",\"date\":\"2022-04-20 14:35:00\",\"reference_no\":\"SALE2022\\/05\\/0014\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"2400.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\":\"b25e51985802f480ab7883c2d5c32ec6aced688ce4641ef13a68f301ed987286\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"102\",\"sale_id\":\"56\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (319, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"55\",\"date\":\"2022-04-20 10:30:00\",\"reference_no\":\"SALE2022\\/05\\/0013\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"150.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\":\"1119d2e22651916abdec338a812bd4d06629f96aa77039e0b40712504791f2ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"101\",\"sale_id\":\"55\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (320, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"51\",\"date\":\"2022-04-20 09:00:00\",\"reference_no\":\"SALE2022\\/05\\/0009\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"0e04bc2d32e432fe4821b477644ceda8b5c2ebeebf1ffc07526dff54f2c235b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"97\",\"sale_id\":\"51\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (321, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"54\",\"date\":\"2022-04-20 08:40:00\",\"reference_no\":\"SALE2022\\/05\\/0012\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"150.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\":\"aa546077da56e5f111db04cc0832a6e1a5f3846c04dfc7a6a70c966ae4da82b1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"100\",\"sale_id\":\"54\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (322, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"53\",\"date\":\"2022-04-20 08:15:00\",\"reference_no\":\"SALE2022\\/05\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"f962936b1a8086be54689025e994da429361c3db1a877aae2c784ec702a3e7f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"99\",\"sale_id\":\"53\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (323, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"52\",\"date\":\"2022-04-20 08:05:00\",\"reference_no\":\"SALE2022\\/05\\/0010\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"880e2ae27c38dd3f3ebf690cddd41e972474b3b683b3d00eb29624f3e1fdbf11\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"98\",\"sale_id\":\"52\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (324, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"45\",\"date\":\"2022-04-19 15:50:00\",\"reference_no\":\"SALE2022\\/05\\/0003\",\"customer_id\":\"13\",\"customer\":\"Tasia Catholic\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"250.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\":\"717fbf45bcf4b0cdbc05ff47ed7c68df472f2d75772f86d77262b42f9b99159d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"91\",\"sale_id\":\"45\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (325, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"50\",\"date\":\"2022-04-19 15:00:00\",\"reference_no\":\"SALE2022\\/05\\/0008\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"1100.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\":\"a35c32c999c13235e6893f74ba6aef414723b1914020bc08867c21d5af445b30\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"96\",\"sale_id\":\"50\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (326, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"49\",\"date\":\"2022-04-19 14:35:00\",\"reference_no\":\"SALE2022\\/05\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"9c9408316d75f6c4bd81151495f2dc9d31b0e1b65a660edcc34cbec22997f9f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"95\",\"sale_id\":\"49\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (327, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"48\",\"date\":\"2022-04-19 14:35:00\",\"reference_no\":\"SALE2022\\/05\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"50.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"50.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\":\"6bb37cc39388fc3214d41dec78604d6c9bdc057d1827e6271f365c2d140369d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"94\",\"sale_id\":\"48\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (328, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"47\",\"date\":\"2022-04-19 14:35:00\",\"reference_no\":\"SALE2022\\/05\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"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\":\"02b128d54ad96b5ab6ebc4df3197e237728b1f81ebddc5e2fd534a1869ea43a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"93\",\"sale_id\":\"47\",\"product_id\":\"61\",\"product_code\":\"22328908\",\"product_name\":\"Embroidery marking\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (329, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"46\",\"date\":\"2022-04-19 14:30:00\",\"reference_no\":\"SALE2022\\/05\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"750.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\":\"4221ead529eea6925326bcea1ea2c6c76fdf8d59eff17f3a7c8eebf1f4ece1b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"92\",\"sale_id\":\"46\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"5.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (330, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"44\",\"date\":\"2022-04-19 02:45:00\",\"reference_no\":\"SALE2022\\/05\\/0002\",\"customer_id\":\"12\",\"customer\":\"LAKEWOOD\",\"biller_id\":\"3\",\"biller\":\"Tech-Firm Knits\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"450.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\":\"9daf8e81d8b3e41c1ed0fd317de696d32f72685ea51540bce0b7a5ea34f5a02f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"90\",\"sale_id\":\"44\",\"product_id\":\"60\",\"product_code\":\"62157189\",\"product_name\":\"Embroidery Logo\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"225.0000\",\"unit_price\":\"225.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"225.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"2.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-07-05 11:07:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (331, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"date\":\"2022-05-26 17:03:00\",\"reference\":\"2022\\/05\\/0021\",\"amount\":\"2050.0000\",\"note\":\"<p>Wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (332, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-05-25 17:05:00\",\"reference\":\"2022\\/05\\/0022\",\"amount\":\"1950.0000\",\"note\":\"<p>Joseph<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (333, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-05-23 15:02:00\",\"reference\":\"2022\\/05\\/0020\",\"amount\":\"1000.0000\",\"note\":\"<p>Wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (334, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-05-23 14:59:00\",\"reference\":\"2022\\/05\\/0019\",\"amount\":\"800.0000\",\"note\":\"<p>Tokkens Ksh 500<\\/p><p>Transport Ksh 300<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (335, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"date\":\"2022-05-21 14:01:00\",\"reference\":\"2022\\/05\\/0018\",\"amount\":\"16330.0000\",\"note\":\"<p>Patrick Ksh 500<\\/p><p>Wambua 2,500<\\/p><p>Dan Ksh 5,000<\\/p><p>Rozzie Ksh 5,830<\\/p><p>Christine Ksh 2,500<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (336, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-05-20 13:29:00\",\"reference\":\"2022\\/05\\/0017\",\"amount\":\"300.0000\",\"note\":\"<p>Bag & Linning 5M<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (337, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-05-20 13:28:00\",\"reference\":\"2022\\/05\\/0016\",\"amount\":\"1250.0000\",\"note\":\"<p>Wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (338, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-05-19 13:00:00\",\"reference\":\"2022\\/05\\/0015\",\"amount\":\"200.0000\",\"note\":\"<p>Knitting Niddle<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (339, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-05-18 20:52:00\",\"reference\":\"2022\\/05\\/0014\",\"amount\":\"120.0000\",\"note\":\"<p>Shindano<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (340, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-05-17 17:30:00\",\"reference\":\"2022\\/05\\/0013\",\"amount\":\"1570.0000\",\"note\":\"<p>Shindano 9A Ksh 800<\\/p><p>Mafuta Machine Ksh 270<\\/p><p>Transport Ksh 500<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (341, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-05-17 17:30:00\",\"reference\":\"2022\\/05\\/0012\",\"amount\":\"500.0000\",\"note\":\"<p>Wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (342, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-05-16 16:32:00\",\"reference\":\"2022\\/05\\/0008\",\"amount\":\"2410.0000\",\"note\":\"\",\"created_by\":\"8\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (343, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-05-14 17:00:00\",\"reference\":\"2022\\/05\\/0011\",\"amount\":\"20000.0000\",\"note\":\"<p>Rent for sweaters shop<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"13\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (344, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-05-14 17:00:00\",\"reference\":\"2022\\/05\\/0010\",\"amount\":\"1000.0000\",\"note\":\"<p>Bike Ksh 500<\\/p><p>Wambua Ksh 500<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (345, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-05-14 17:00:00\",\"reference\":\"2022\\/05\\/0009\",\"amount\":\"14910.0000\",\"note\":\"<p>Dan Ksh 5,000<\\/p><p>Rozie Ksh 5,910<\\/p><p>Wambua Ksh 800 + Ksh 2200 advance<\\/p><p>Night Shift Ksh 1,000<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (346, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-05-14 10:50:00\",\"reference\":\"2022\\/05\\/0006\",\"amount\":\"650.0000\",\"note\":\"<p>Wambua Ksh 500<\\/p><p>Patrick Ksh 150\\u00a0<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (347, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"19\",\"date\":\"2022-05-13 10:30:00\",\"reference\":\"2022\\/05\\/0005\",\"amount\":\"1000.0000\",\"note\":\"<p>Wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (348, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"16\",\"date\":\"2022-05-12 18:45:00\",\"reference\":\"Night Shift\",\"amount\":\"1000.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (349, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"17\",\"date\":\"2022-05-12 14:50:00\",\"reference\":\"Padlock\",\"amount\":\"1000.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (350, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"18\",\"date\":\"2022-05-12 10:30:00\",\"reference\":\"Transport\",\"amount\":\"350.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (351, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"15\",\"date\":\"2022-05-11 10:45:00\",\"reference\":\"2022\\/05\\/0004\",\"amount\":\"70.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (352, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"14\",\"date\":\"2022-05-10 18:00:00\",\"reference\":\"Salaries\",\"amount\":\"8000.0000\",\"note\":\"<p>Ksh 1000 night shift guy<\\/p><p>Ksh 7000 wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (353, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"4\",\"date\":\"2022-05-10 17:55:00\",\"reference\":\"THERMOL ROLL\",\"amount\":\"392.0000\",\"note\":\"\",\"created_by\":\"6\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (354, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"13\",\"date\":\"2022-05-09 18:25:00\",\"reference\":\"Workers\",\"amount\":\"11730.0000\",\"note\":\"<p>Ksh\\u00a03400 salary Christine<\\/p><p>Ksh 6030 salary rozie<\\/p><p>Ksh 2300 wambua<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (355, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"3\",\"date\":\"2022-05-09 17:53:00\",\"reference\":\"2022\\/05\\/0003\",\"amount\":\"20000.0000\",\"note\":\"<p>Rent Up-Front for the new shop. Balance pending is 10k<\\/p>\",\"created_by\":\"6\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (356, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"12\",\"date\":\"2022-05-07 10:24:00\",\"reference\":\"Shiru\",\"amount\":\"500.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (357, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"11\",\"date\":\"2022-05-07 10:22:00\",\"reference\":\"Patrick\",\"amount\":\"1675.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"11\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (358, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-05-06 18:48:00\",\"reference\":\"2022\\/05\\/0001\",\"amount\":\"1000.0000\",\"note\":\"<p>KPLC for Uhuru Market Shop<\\/p>\",\"created_by\":\"6\",\"attachment\":\"0\",\"category_id\":\"13\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (359, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-05-05 13:30:00\",\"reference\":\"2022\\/05\\/0007\",\"amount\":\"40000.0000\",\"note\":\"<p>Software Ksh 25,000<\\/p><p>Computer Ksh 15,000<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (360, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"10\",\"date\":\"2022-05-05 10:19:00\",\"reference\":\"Ngunia\",\"amount\":\"100.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"0\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (361, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"9\",\"date\":\"2022-05-04 10:50:00\",\"reference\":\"Mbithe\",\"amount\":\"220.0000\",\"note\":\"<p>Shindano Ksh 120<\\/p><p>Mbithe Ksh 100<\\/p>\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (362, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"5\",\"date\":\"2022-05-02 17:52:00\",\"reference\":\"2\\/5\\/2022   internet\",\"amount\":\"6700.0000\",\"note\":\"\",\"created_by\":\"6\",\"attachment\":\"0\",\"category_id\":\"13\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (363, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"8\",\"date\":\"2022-05-02 10:50:00\",\"reference\":\"PoS\",\"amount\":\"1605.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"12\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (364, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"7\",\"date\":\"2022-05-02 10:50:00\",\"reference\":\"Lining 5M\",\"amount\":\"250.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"1\"}}', '2022-07-05 11:08:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (365, 'Expense is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"6\",\"date\":\"2022-05-02 10:00:00\",\"reference\":\"Extension Cord\",\"amount\":\"450.0000\",\"note\":\"\",\"created_by\":\"5\",\"attachment\":\"0\",\"category_id\":\"14\",\"warehouse_id\":\"0\"}}', '2022-07-05 11:08:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (366, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"9\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"maziwa\",\"company\":\"maziwa\",\"vat_no\":\"\",\"address\":\"maziwa\",\"city\":\"Uhuru Market\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"22222\",\"email\":\"maziwa@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-07-05 11:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (367, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"11\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"sonny uzi em\",\"company\":\"sonny uzi embroidery\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"uhuru market\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"12345\",\"email\":\"sonny1234@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-07-05 11:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (368, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"7\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Spinners\",\"company\":\"Spinners\",\"vat_no\":\"\",\"address\":\"Ruiru\",\"city\":\"Ruiru\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0791949499\",\"email\":\"snippers@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-07-05 11:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (369, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"8\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Wall Street\",\"company\":\"Wall Street\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"1231456\",\"email\":\"wall@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-07-05 11:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (370, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"6\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Warehouse\",\"company\":\"Warehouse\",\"vat_no\":\"\",\"address\":\"Ruiru\",\"city\":\"Ruiru\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0722000000\",\"email\":\"info@techfirmknits.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-07-05 11:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (371, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"16\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"CARO\",\"company\":\"CARO\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"uhuru market\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0721128421\",\"email\":\"arol23@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (372, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"15\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"FAO\",\"company\":\"FAO\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"uhuru market\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0112379096\",\"email\":\"KELVIN1232@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (373, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"12\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"2\",\"customer_group_name\":\"Reseller\",\"name\":\"Embroidery Works\",\"company\":\"LAKEWOOD\",\"vat_no\":\"\",\"address\":\"566\",\"city\":\"Ruiru\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0708142075\",\"email\":\"techfirmknits@gmail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (374, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"17\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Scouts Kenya\",\"company\":\"Scouts Kenya\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"uhuru market\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0748701068\",\"email\":\"SCOUTS@GMAL.COM\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (375, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"13\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"2\",\"customer_group_name\":\"Reseller\",\"name\":\"Embroidery Works\",\"company\":\"Tasia Catholic\",\"vat_no\":\"\",\"address\":\"566\",\"city\":\"Ruiru\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"+254112379096\",\"email\":\"charlesgk85@yahoo.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (376, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"10\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Uhuru Market Customers\",\"company\":\"Uhuru Market Customers\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"77777\",\"email\":\"sales@techfirmknits.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (377, 'Customer is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"14\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"KELVIN\",\"company\":\"Uhuru Market Customers\",\"vat_no\":\"\",\"address\":\"Uhuru Market\",\"city\":\"Uhuru Market\",\"state\":\"uhuru market\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0708142074\",\"email\":\"KELVIN12@GMAIL.COM\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-07-05 11:30:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (378, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"AFRICASPIRITLTD\",\"company\":\"AFRICA SPIRIT LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (379, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"112\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"AGRO CTCL\",\"company\":\"AGRO CHEMICAL & FOOD CO. Ltd.\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (380, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"102\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2020\",\"company\":\"AHAVA\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (381, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"89\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"999\",\"company\":\"ALLAN GICHUKI\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (382, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"25\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"AMAZONE\",\"company\":\"AMAZON LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (383, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"59\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1437\",\"company\":\"AMISACH LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (384, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"92\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2500\",\"company\":\"ASSOCIATED BEVERAGES LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (385, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"98\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"4320\",\"company\":\"CHECKMATE DISTRIBUTORS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (386, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"90\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"5400\",\"company\":\"CITY COUNCIL\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (387, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"81\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"12000\",\"company\":\"crimecurb\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (388, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"CRYSTALWINE\",\"company\":\"CRYSTAL WINE AGENCY\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (389, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"107\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SKYGUEST\",\"company\":\"CUSTOMERS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (390, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"39\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"21\",\"company\":\"distell winemasters\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (391, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"49\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2\",\"company\":\"DO STORES LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (392, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"87\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2455\",\"company\":\"EASTLEIGH CAR WASH\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (393, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"88\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"555\",\"company\":\"EDWIN MWANGI\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (394, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"119\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2000\",\"company\":\"ENGEN\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (395, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"71\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"GABBAGE\",\"company\":\"GABBAGE\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (396, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"46\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1\",\"company\":\"gokam\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (397, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"67\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"HEINEKEN\",\"company\":\"HEINEKEN INVESTERS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (398, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2692\",\"company\":\"HOTMOON\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (399, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"91\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2016\",\"company\":\"ICEALION\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (400, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"76\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"7000\",\"company\":\"INSUARANCE\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (401, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"93\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"3001\",\"company\":\"ISHANO DISTRIBUTORS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (402, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"106\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"PEMA\",\"company\":\"JAMES\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (403, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"73\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"4000\",\"company\":\"JAMJOY\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (404, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"5885\",\"company\":\"JECJA INVESTMENT\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (405, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"24\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"JESSCA\",\"company\":\"JESSICA LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (406, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"22\",\"company\":\"JEYFINE\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (407, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"61\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"JOS*HANSEN\",\"company\":\"JOS*HANSEN\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (408, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"JOVET\",\"company\":\"JOVET\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (409, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"47\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"36\",\"company\":\"juja wines\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (410, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"79\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"10000\",\"company\":\"jymo system\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (411, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"41\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"4215\",\"company\":\"kamahuhua ltd\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (412, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"40\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2541\",\"company\":\"KAPARI\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (413, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"38\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"23154\",\"company\":\"KENBEV LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (414, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"50\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"321897\",\"company\":\"king beverage\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (415, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"115\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"51267\",\"company\":\"KING\'INYA & SONS DISTRIBUTORS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (416, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"72\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"3000\",\"company\":\"KPLC\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (417, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"83\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"14\",\"company\":\"kra\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (418, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"64\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"KWAL\",\"company\":\"KWAL LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (419, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"74\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"5000\",\"company\":\"LANDLORD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (420, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"110\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"LEADING DISTILLERS\",\"company\":\"LEADING DSTK\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (421, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"18\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"LondonDistillers\",\"company\":\"London Distillers\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (422, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"60\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1000\",\"company\":\"London Distillers\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (423, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"96\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"120\",\"company\":\"MAISHA BEVERAGES LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (424, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"111\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"MAUTAMUU\",\"company\":\"MAUTAMUU COMPANY LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (425, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"42\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"210\",\"company\":\"maxam\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (426, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"84\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"15000\",\"company\":\"Mbugua njuka\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (427, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"80\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"11000\",\"company\":\"mike internet\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (428, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"77\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"8000\",\"company\":\"miscelineous\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (429, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"82\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"13000\",\"company\":\"Miti\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (430, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"78\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"9000\",\"company\":\"Mkamba\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (431, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"23\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"MOHANS\",\"company\":\"MOHANS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (432, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"65\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"MOONWALK\",\"company\":\"MOONWALK INVESTMENTS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (433, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"62\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"DETERGENT\",\"company\":\"mso\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (434, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"21\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"MUHORINI\",\"company\":\"MUHORONI INVESTERS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (435, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"53\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"66\",\"company\":\"MULTIBRANDS E.A LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (436, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"44\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"321\",\"company\":\"mwalimu wine agencies\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (437, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"118\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"COCACOLA\",\"company\":\"NAIROBI BOTTLERS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (438, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"63\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"WATER COMPANY\",\"company\":\"NAIROBI WATER\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (439, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"58\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1009\",\"company\":\"NINE TRADING\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (440, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"75\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"6000\",\"company\":\"NJUGUNA\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (441, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"56\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"NYAMBE ENT LTD\",\"company\":\"NYAMBE ENT LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (442, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"101\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2021\",\"company\":\"OBRADLEYS INVESTMENT LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (443, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"0.3\",\"company\":\"OCEAN FOODS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (444, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"43\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"100\",\"company\":\"outlook index limited\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (445, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"37\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"55559\",\"company\":\"PACIFIC TRADING COMPANY\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (446, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1010\",\"company\":\"PATIALA DISTILLERS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (447, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"114\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"EM0003\",\"company\":\"PEKAY BROTHERS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (448, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"48\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"23\",\"company\":\"percept holdings\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (449, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"105\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"PETKAR\",\"company\":\"PETKAR\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (450, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"116\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"PIPERS\",\"company\":\"PIPERS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (451, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"66\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"PLATINUM\",\"company\":\"PLATINUM DISTILLERS LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (452, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"51\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"25\",\"company\":\"premier foods industries\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (453, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"103\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"123544\",\"company\":\"RAHUM\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (454, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"108\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"RAHUM\",\"company\":\"RAHUM\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (455, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"117\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"RIVERROSE\",\"company\":\"RIVERROSE WINE DISTRIBUTORS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (456, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"68\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SAM & SON SUPPLIERS\",\"company\":\"SAM & SON SUPPLIERS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (457, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"97\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"10001\",\"company\":\"SAMEER AGRICUITURE & LIVESTOCK [K] LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (458, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"27\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SHARK\",\"company\":\"SHARK INVESTORS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (459, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"54\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SIDDHAM BEVARAGES LIMITED\",\"company\":\"SIDDHAM BEVARAGES LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (460, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"85\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"9331\",\"company\":\"SKY FOODS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (461, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"57\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"5320\",\"company\":\"SLATER & WHITTAKER\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (462, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"109\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SUFNA GENERAL\",\"company\":\"SUFNA GENERAL\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (463, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"70\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"SUNDUS\",\"company\":\"SUNDUS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (464, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"99\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1020\",\"company\":\"SWIFT KLEIN GLOBAL LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (465, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"231\",\"company\":\"TERIKI EA LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (466, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"113\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1030\",\"company\":\"TOP IT UP\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (467, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"86\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"2002\",\"company\":\"TOWN CITY\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (468, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"55\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"TUCHA  LTD\",\"company\":\"TUCHA LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (469, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"UDVHOLDINGS\",\"company\":\"UDV HOLDINGS\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (470, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"19\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"UDVPEWAH\",\"company\":\"UDV PEWAH LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (471, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"20\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"UDVRWATHIA\",\"company\":\"UDV RWATHIA LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (472, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"69\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"1001\",\"company\":\"UDV RWATHIA LIMITED\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (473, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"21213\",\"company\":\"UNITED SPIRITS LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (474, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"104\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"VAL\",\"company\":\"VAL\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (475, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"52\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"99\",\"company\":\"VEEW\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (476, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"100\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"12020\",\"company\":\"VIVA\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (477, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"94\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"7001\",\"company\":\"Wanjii ventures ltd\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (478, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"45\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"31\",\"company\":\"wow beverages\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (479, 'Supplier is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"95\",\"group_id\":\"4\",\"group_name\":\"supplier\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"20199\",\"company\":\"ZHENG HONG K LTD\",\"vat_no\":\"\",\"address\":\"\",\"city\":\"\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"\",\"email\":\"info@wine.co.ke\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":\"\"}}', '2022-09-28 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (480, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"163\",\"code\":\"101603256\",\"name\":\"BALOZI  BOTTLE 500ML\",\"unit\":\"4\",\"cost\":\"151.2000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"101603256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"151.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"balozi-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BALOZI  BOTTLE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (481, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"229\",\"code\":\"11011110111011\",\"name\":\"bluemoon mix\",\"unit\":\"4\",\"cost\":\"110.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"11011110111011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"110.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon mix\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (482, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"333\",\"code\":\"11031254\",\"name\":\"drosthof 375ml\",\"unit\":\"4\",\"cost\":\"316.1200\",\"price\":\"380.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"11031254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"316.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"drosthof-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"drosthof 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (483, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"606\",\"code\":\"11122018\",\"name\":\"LICENCE\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"11122018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"90\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"licence\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LICENCE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (484, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"713\",\"code\":\"112131104\",\"name\":\"origin bitter 750ml\",\"unit\":\"4\",\"cost\":\"480.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"112131104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"480.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"origin-bitter-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"origin bitter 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (485, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"413\",\"code\":\"112587025\",\"name\":\"furaha vodka 250ml\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"112587025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"furaha-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"furaha vodka 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (486, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"823\",\"code\":\"121000100962\",\"name\":\"SOUTHERN COMFORT BLACK 750ML\",\"unit\":\"4\",\"cost\":\"1540.0000\",\"price\":\"1950.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"121000100962\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"1540.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"southern-comfort-black-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SOUTHERN COMFORT BLACK 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (487, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"326\",\"code\":\"123451\",\"name\":\"DETERGENT\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"62\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"detergent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DETERGENT\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (488, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"533\",\"code\":\"1234510\",\"name\":\"JIK\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"320.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jik\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JIK\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (489, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"843\",\"code\":\"1234511\",\"name\":\"STASOFT\",\"unit\":\"4\",\"cost\":\"800.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234511\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"stasoft\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"STASOFT\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (490, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"915\",\"code\":\"1234512\",\"name\":\"WATER PACIFIC\",\"unit\":\"4\",\"cost\":\"13.3000\",\"price\":\"13.3000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234512\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"13.3000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"water-pacific\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WATER PACIFIC\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (491, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"415\",\"code\":\"1234513\",\"name\":\"GABBAGE\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234513\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"71\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gabbage\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GABBAGE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (492, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"914\",\"code\":\"1234514\",\"name\":\"WATER CHARGES\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234514\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"106\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"water-charges\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WATER CHARGES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (493, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"760\",\"code\":\"1234515\",\"name\":\"RENT\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"20\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"73\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"rent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RENT\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (494, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"255\",\"code\":\"1234516\",\"name\":\"CAR SERVICES\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234516\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"75\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"car-services\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAR SERVICES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (495, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"506\",\"code\":\"1234517\",\"name\":\"ISUARANCE\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234517\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"76\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"isuarance\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ISUARANCE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (496, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"761\",\"code\":\"1234518\",\"name\":\"RENTCATER\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"74\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"rentcater\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RENTCATER\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (497, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"522\",\"code\":\"1234519\",\"name\":\"james expenses\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234519\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"77\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"james-expenses\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"james expenses\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (498, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"874\",\"code\":\"123452\",\"name\":\"TOWELS\",\"unit\":\"4\",\"cost\":\"350.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123452\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"106\",\"supplier1price\":\"350.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"towels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TOWELS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (499, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"749\",\"code\":\"1234520\",\"name\":\"Receipt books\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"78\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"receipt-books\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Receipt books\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (500, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"464\",\"code\":\"1234521\",\"name\":\"Harpic\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234521\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"harpic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Harpic\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (501, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"327\",\"code\":\"1234522\",\"name\":\"Detol\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"detol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Detol\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (502, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"858\",\"code\":\"1234523\",\"name\":\"system\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234523\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"79\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"system\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"system\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (503, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"503\",\"code\":\"1234524\",\"name\":\"internet\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"80\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"internet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"internet\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (504, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"794\",\"code\":\"1234525\",\"name\":\"security\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"81\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"security\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"security\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (505, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"589\",\"code\":\"1234526\",\"name\":\"kraa\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234526\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"83\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kraa\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kraa\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (506, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"256\",\"code\":\"1234527\",\"name\":\"Car truck\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234527\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"84\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"car-truck\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Car truck\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (507, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"291\",\"code\":\"1234529\",\"name\":\"co-pema\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"1234529\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"82\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"co-pema\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"co-pema\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (508, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"409\",\"code\":\"123453\",\"name\":\"FUEL\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123453\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"119\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fuel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FUEL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (509, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"609\",\"code\":\"123454\",\"name\":\"LODGE SOAP\",\"unit\":\"4\",\"cost\":\"5.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123454\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"5.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"lodge-soap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LODGE SOAP\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (510, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"870\",\"code\":\"123455\",\"name\":\"TOKENS\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123455\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"72\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tokens\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TOKENS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (511, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"456\",\"code\":\"123456\",\"name\":\"GUESTS\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"20\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"107\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guests\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUESTS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (512, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"864\",\"code\":\"12345679986\",\"name\":\"TEACHERS 350ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"12345679986\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"teachers-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TEACHERS 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (513, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"773\",\"code\":\"123456987\",\"name\":\"ROOM\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123456987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"107\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"room\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROOM\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (514, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"762\",\"code\":\"123457\",\"name\":\"REPAIRS\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"106\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"repairs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"REPAIRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (515, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"785\",\"code\":\"123458\",\"name\":\"SALARIES\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"106\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"salaries\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SALARIES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (516, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"869\",\"code\":\"123459\",\"name\":\"TISSUE\",\"unit\":\"4\",\"cost\":\"20.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"123459\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"20.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tissue\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TISSUE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (517, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"796\",\"code\":\"125345687\",\"name\":\"showers\",\"unit\":\"4\",\"cost\":\"1800.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"125345687\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"1800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"showers\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"showers\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (518, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"789\",\"code\":\"2012030\",\"name\":\"SAVINGS\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"2012030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"91\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"savings\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAVINGS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (519, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"902\",\"code\":\"235468\",\"name\":\"VEHICLES TOOLS\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"235468\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"86\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vehicles-tools\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VEHICLES TOOLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (520, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"844\",\"code\":\"23566\",\"name\":\"Stone 500ml PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"23566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"stone-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Stone 500ml PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (521, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"313\",\"code\":\"24000103561\",\"name\":\"Delemonte apple orange 250ml\",\"unit\":\"4\",\"cost\":\"40.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000103561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"40.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delemonte-apple-orange-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Delemonte apple orange 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (522, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"315\",\"code\":\"24000103562\",\"name\":\"Delemonte apple strawberry 250ml\",\"unit\":\"4\",\"cost\":\"40.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000103562\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"40.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delemonte-apple-strawberry-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Delemonte apple strawberry 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (523, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"312\",\"code\":\"24000103563\",\"name\":\"Delemonte apple Black Berry 250ml\",\"unit\":\"4\",\"cost\":\"40.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000103563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"40.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delemonte-apple-black-berry-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Delemonte apple Black Berry 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (524, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"314\",\"code\":\"24000103564\",\"name\":\"Delemonte apple pineapple 250ml\",\"unit\":\"4\",\"cost\":\"40.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000103564\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"40.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delemonte-apple-pineapple-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Delemonte apple pineapple 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (525, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"317\",\"code\":\"24000150053\",\"name\":\"DELMONTE APPLE\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000150053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-apple\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE APPLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (526, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"322\",\"code\":\"24000150121\",\"name\":\"DELMONTE TROPICAL\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000150121\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-tropical\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE TROPICAL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (527, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"319\",\"code\":\"24000150138\",\"name\":\"DELMONTE MIXED BERRIES\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000150138\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-mixed-berries\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE MIXED BERRIES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (528, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"318\",\"code\":\"24000150152\",\"name\":\"DELMONTE MANGO 1LITRE\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000150152\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-mango-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE MANGO 1LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (529, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"321\",\"code\":\"24000191667\",\"name\":\"DELMONTE PASSION\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000191667\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-passion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE PASSION\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (530, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"320\",\"code\":\"24000224495\",\"name\":\"DELMONTE ORANGE\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000224495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE ORANGE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (531, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"114\",\"code\":\"24000224556\",\"name\":\"DELMONTE PINEAPPLE\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"24000224556\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"44\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delmonte-pineapple\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELMONTE PINEAPPLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (532, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"524\",\"code\":\"25879\",\"name\":\"Jameson 1l\",\"unit\":\"4\",\"cost\":\"2092.0000\",\"price\":\"2400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"25879\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"60\",\"supplier1price\":\"2092.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jameson-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Jameson 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (533, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"801\",\"code\":\"3012992421005\",\"name\":\"SIR EDWARD WHISKY 1 L\",\"unit\":\"4\",\"cost\":\"1184.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3012992421005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"1184.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sir-edward-whisky-1-l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SIR EDWARD WHISKY 1 L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (534, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"802\",\"code\":\"3012992422002\",\"name\":\"SIR EDWARD\'S 750ML\",\"unit\":\"4\",\"cost\":\"950.0000\",\"price\":\"1050.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3012992422002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"950.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sir-edwards-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SIR EDWARD\'S 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (535, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"803\",\"code\":\"3012997686201\",\"name\":\"SIR EDWARD\'S WHISKY 350ML\",\"unit\":\"4\",\"cost\":\"558.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3012997686201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"558.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sir-edwards-whisky-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SIR EDWARD\'S WHISKY 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (536, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"775\",\"code\":\"3014400022637\",\"name\":\"RUM BLANC BLACK HEAD 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3014400022637\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"rum-blanc-black-head-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RUM BLANC BLACK HEAD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (537, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"495\",\"code\":\"3014409007130\",\"name\":\"HUNTING LODGE WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3014409007130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (538, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"494\",\"code\":\"3014409007161\",\"name\":\"HUNTING LODGE VODKA 4X 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3014409007161\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-vodka-4x-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE VODKA 4X 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (539, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"900\",\"code\":\"3105420398\",\"name\":\"vat69 375ml\",\"unit\":\"4\",\"cost\":\"656.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3105420398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"656.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vat69-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"vat69 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (540, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"424\",\"code\":\"3147690060703\",\"name\":\"GIBSON\'S GIN 750ML\",\"unit\":\"4\",\"cost\":\"905.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3147690060703\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"905.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gibsons-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GIBSON\'S GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (541, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"425\",\"code\":\"3147699118344\",\"name\":\"GIBSON\'S PINK GIN 750ML\",\"unit\":\"4\",\"cost\":\"969.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3147699118344\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"969.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gibsons-pink-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GIBSON\'S PINK GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (542, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"325\",\"code\":\"3155930006015\",\"name\":\"DESPERADOS ORIGINAL 330ML\",\"unit\":\"4\",\"cost\":\"210.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3155930006015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"117\",\"supplier1price\":\"210.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"desperados-original-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DESPERADOS ORIGINAL 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (543, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"837\",\"code\":\"3161420000203\",\"name\":\"ST REMY VSOP 750ML\",\"unit\":\"4\",\"cost\":\"1212.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3161420000203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1212.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-remy-vsop-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ST REMY VSOP 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (544, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"838\",\"code\":\"3161420002467\",\"name\":\"ST REMY XO 750ML\",\"unit\":\"4\",\"cost\":\"2032.0000\",\"price\":\"2500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3161420002467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"2032.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-remy-xo-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ST REMY XO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (545, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"839\",\"code\":\"3161420002535\",\"name\":\"ST REMY XO 750ML\",\"unit\":\"4\",\"cost\":\"1642.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3161420002535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1642.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-remy-xo-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ST REMY XO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (546, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"489\",\"code\":\"3162040132619\",\"name\":\"HUNTING LODGE L DRY GIN 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162040132619\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-l-dry-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE L DRY GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (547, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"491\",\"code\":\"3162040132633\",\"name\":\"HUNTING LODGE VDK CHOCOLATE 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162040132633\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-vdk-chocolate-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE VDK CHOCOLATE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (548, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"490\",\"code\":\"3162040132640\",\"name\":\"HUNTING LODGE VDK CHOCOLATE 1LTR\",\"unit\":\"4\",\"cost\":\"780.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162040132640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"780.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-vdk-chocolate-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE VDK CHOCOLATE 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (549, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"493\",\"code\":\"3162040132664\",\"name\":\"HUNTING LODGE VDK GREEN APPLE 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162040132664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-vdk-green-apple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE VDK GREEN APPLE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (550, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"492\",\"code\":\"3162040132671\",\"name\":\"HUNTING LODGE VDK GREEN APPLE 1LTR\",\"unit\":\"4\",\"cost\":\"780.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3162040132671\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"780.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunting-lodge-vdk-green-apple-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTING LODGE VDK GREEN APPLE 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (551, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"526\",\"code\":\"32145\",\"name\":\"Jameson 750 ml\",\"unit\":\"4\",\"cost\":\"1600.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"32145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jameson-750-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Jameson 750 ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (552, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"240\",\"code\":\"32165478\",\"name\":\"buttlers tripple sec 750ml\",\"unit\":\"4\",\"cost\":\"1040.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"32165478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1040.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"buttlers-tripple-sec-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"buttlers tripple sec 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (553, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"472\",\"code\":\"3245990001218\",\"name\":\"HENNESSY XO EXTRA OLD COGNAG 750ML\",\"unit\":\"4\",\"cost\":\"20500.0000\",\"price\":\"24900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990001218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"20500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hennessy-xo-extra-old-cognag-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HENNESSY XO EXTRA OLD COGNAG 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (554, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"467\",\"code\":\"3245990250203\",\"name\":\"HENNEESSY SPECIAL 750ML\",\"unit\":\"4\",\"cost\":\"3060.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990250203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"3060.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"henneessy-special-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HENNEESSY SPECIAL 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (555, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"471\",\"code\":\"3245990250302\",\"name\":\"hennessy whisky 350ml\",\"unit\":\"4\",\"cost\":\"1751.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990250302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1751.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hennessy-whisky-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"hennessy whisky 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (556, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"468\",\"code\":\"3245990255307\",\"name\":\"HENNESSY SPECIAL 1LITRE\",\"unit\":\"4\",\"cost\":\"4000.0000\",\"price\":\"6000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990255307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"4000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hennessy-special-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HENNESSY SPECIAL 1LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (557, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"469\",\"code\":\"3245990969419\",\"name\":\"HENNESSY V.S.O.P 750ML\",\"unit\":\"4\",\"cost\":\"5472.0000\",\"price\":\"7000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990969419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"5472.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hennessy-vsop-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HENNESSY V.S.O.P 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (558, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"470\",\"code\":\"3245990987604\",\"name\":\"HENNESSY VSOP 1 LITRE\",\"unit\":\"4\",\"cost\":\"7100.0000\",\"price\":\"9000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3245990987604\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"7100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hennessy-vsop-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HENNESSY VSOP 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (559, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"806\",\"code\":\"325458\",\"name\":\"smaller opene@70\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"70.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"325458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smaller-opene70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"smaller opene@70\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (560, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"543\",\"code\":\"3263280105699\",\"name\":\"JP CHENET\",\"unit\":\"4\",\"cost\":\"796.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263280105699\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"796.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JP CHENET\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (561, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"208\",\"code\":\"3263280110280\",\"name\":\"BLUE DARGENT GIN 750ML\",\"unit\":\"4\",\"cost\":\"1329.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263280110280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1329.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-dargent-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE DARGENT GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (562, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"309\",\"code\":\"3263280117289\",\"name\":\"DARGENT GIN STRAWBERRY PINK 750ML\",\"unit\":\"4\",\"cost\":\"1329.0000\",\"price\":\"1550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263280117289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1329.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dargent-gin-strawberry-pink-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DARGENT GIN STRAWBERRY PINK 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (563, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"532\",\"code\":\"3263285151356\",\"name\":\"JEZLIN 700ML\",\"unit\":\"4\",\"cost\":\"434.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263285151356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"434.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jezlin-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JEZLIN 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (564, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"544\",\"code\":\"3263286301323\",\"name\":\"jp chenet cab syrah 750ml\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263286301323\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet-cab-syrah-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jp chenet cab syrah 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (565, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"545\",\"code\":\"3263286321284\",\"name\":\"jp chenet medium sweet  rounge 750ml\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263286321284\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet-medium-sweet-rounge-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jp chenet medium sweet  rounge 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (566, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"115\",\"code\":\"3263286328993\",\"name\":\"jp chenet merlot 750ml\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3263286328993\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet-merlot-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jp chenet merlot 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (567, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"475\",\"code\":\"3267682136176\",\"name\":\"HIGHLAND QUEEN 1LTR\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3267682136176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"highland-queen-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HIGHLAND QUEEN 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (568, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"477\",\"code\":\"32676882136404\",\"name\":\"HIGHLAND QUEEN 750ML\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"32676882136404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"highland-queen-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HIGHLAND QUEEN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (569, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"759\",\"code\":\"3272850202683\",\"name\":\"RENDEZ VOUS\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3272850202683\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"rendez-vous\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RENDEZ VOUS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (570, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"476\",\"code\":\"3328640122607\",\"name\":\"HIGHLAND QUEEN 350ML\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3328640122607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"highland-queen-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HIGHLAND QUEEN 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (571, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"177\",\"code\":\"34444444444\",\"name\":\"beer crate\",\"unit\":\"4\",\"cost\":\"335.0000\",\"price\":\"335.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"27\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"34444444444\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"335.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"beer-crate\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"beer crate\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (572, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"176\",\"code\":\"3444444445\",\"name\":\"beer bottle\",\"unit\":\"4\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3444444445\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"17.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"beer-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"beer bottle\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (573, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"546\",\"code\":\"3500610033347\",\"name\":\"jp chenet mediuum sweet blanc\",\"unit\":\"4\",\"cost\":\"630.0000\",\"price\":\"680.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3500610033347\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"630.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet-mediuum-sweet-blanc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jp chenet mediuum sweet blanc\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (574, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"547\",\"code\":\"3500610034589\",\"name\":\"jp chenet sparkling brut 750ml\",\"unit\":\"4\",\"cost\":\"680.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3500610034589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"680.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jp-chenet-sparkling-brut-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jp chenet sparkling brut 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (575, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"488\",\"code\":\"3598471552145\",\"name\":\"HUNTERS GOLD 330ML\",\"unit\":\"4\",\"cost\":\"128.8200\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3598471552145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"128.8200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunters-gold-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTERS GOLD 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (576, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"830\",\"code\":\"36256999365\",\"name\":\"Sprite 330ml gls\",\"unit\":\"4\",\"cost\":\"24.1000\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"36256999365\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-330ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Sprite 330ml gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (577, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"525\",\"code\":\"364587\",\"name\":\"jameson 375ml\",\"unit\":\"4\",\"cost\":\"1056.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"364587\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1056.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jameson-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jameson 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (578, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"715\",\"code\":\"3658742159821\",\"name\":\"OVERMEER LATE HARVEST 5LTRS\",\"unit\":\"4\",\"cost\":\"1950.0000\",\"price\":\"2100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3658742159821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"1950.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"overmeer-late-harvest-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OVERMEER LATE HARVEST 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (579, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"691\",\"code\":\"3695871254\",\"name\":\"new grove silvr\",\"unit\":\"4\",\"cost\":\"870.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3695871254\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"870.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"new-grove-silvr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"new grove silvr\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (580, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"420\",\"code\":\"369852147\",\"name\":\"GAZZETTE\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"369852147\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gazzette\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GAZZETTE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (581, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"379\",\"code\":\"3800032010179\",\"name\":\"FLIRT VODKA CHOCOLATE 1L\",\"unit\":\"4\",\"cost\":\"966.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010179\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"966.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-chocolate-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA CHOCOLATE 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (582, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"375\",\"code\":\"3800032010278\",\"name\":\"FLIRT VODKA 1L\",\"unit\":\"4\",\"cost\":\"966.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"966.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (583, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"205\",\"code\":\"3800032010292\",\"name\":\"BLACK RAM WHISKY 1L\",\"unit\":\"4\",\"cost\":\"1027.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"1027.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-ram-whisky-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK RAM WHISKY 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (584, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"378\",\"code\":\"3800032010346\",\"name\":\"FLIRT VODKA APPLE IL\",\"unit\":\"4\",\"cost\":\"967.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"967.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-apple-il\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA APPLE IL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (585, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"382\",\"code\":\"3800032010407\",\"name\":\"FLIRT VODKA ORANGE 1 L\",\"unit\":\"4\",\"cost\":\"926.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"926.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-orange-1-l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA ORANGE 1 L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (586, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"388\",\"code\":\"3800032010421\",\"name\":\"FLIRT VODKA VANILLA 1L\",\"unit\":\"4\",\"cost\":\"966.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010421\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"966.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-vanilla-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA VANILLA 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (587, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"384\",\"code\":\"3800032010568\",\"name\":\"FLIRT VODKA STRAWBERRY 1L\",\"unit\":\"4\",\"cost\":\"967.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032010568\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"967.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-strawberry-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA STRAWBERRY 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (588, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"376\",\"code\":\"3800032025050\",\"name\":\"FLIRT VODKA APPLE 250\",\"unit\":\"4\",\"cost\":\"250.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032025050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-apple-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA APPLE 250\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (589, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"372\",\"code\":\"3800032025067\",\"name\":\"FLIRT ORANGE 250ML\",\"unit\":\"4\",\"cost\":\"250.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032025067\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-orange-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT ORANGE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (590, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"385\",\"code\":\"3800032025074\",\"name\":\"FLIRT VODKA STRAWBERRY 250ML\",\"unit\":\"4\",\"cost\":\"250.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032025074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-strawberry-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA STRAWBERRY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (591, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"380\",\"code\":\"3800032025104\",\"name\":\"FLIRT VODKA CHOCOLATE 250ML\",\"unit\":\"4\",\"cost\":\"250.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032025104\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-chocolate-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA CHOCOLATE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (592, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"371\",\"code\":\"3800032035080\",\"name\":\"FLIRT CHOCOLATE VODKA 350 ML\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032035080\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-chocolate-vodka-350-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT CHOCOLATE VODKA 350 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (593, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"377\",\"code\":\"3800032035165\",\"name\":\"FLIRT VODKA APPLE 375ML\",\"unit\":\"4\",\"cost\":\"364.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032035165\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"364.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-apple-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA APPLE 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (594, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"374\",\"code\":\"3800032035219\",\"name\":\"FLIRT VODKA  ORANGE 350ML\",\"unit\":\"4\",\"cost\":\"350.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032035219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"350.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-orange-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA  ORANGE 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (595, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"386\",\"code\":\"3800032035257\",\"name\":\"FLIRT VODKA STRAWBERRY 350ML\",\"unit\":\"4\",\"cost\":\"364.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032035257\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"364.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-strawberry-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA STRAWBERRY 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (596, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"390\",\"code\":\"3800032070265\",\"name\":\"FLIRTSILVER VODKA 700ML\",\"unit\":\"4\",\"cost\":\"741.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"741.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirtsilver-vodka-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRTSILVER VODKA 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (597, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"206\",\"code\":\"3800032070302\",\"name\":\"black ram whisky 750ml\",\"unit\":\"4\",\"cost\":\"746.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070302\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"746.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-ram-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"black ram whisky 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (598, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"381\",\"code\":\"3800032070357\",\"name\":\"FLIRT VODKA GREEN APPLE 750ML\",\"unit\":\"4\",\"cost\":\"761.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070357\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"761.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-green-apple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA GREEN APPLE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (599, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"383\",\"code\":\"3800032070463\",\"name\":\"FLIRT VODKA ORANGE 750ML\",\"unit\":\"4\",\"cost\":\"741.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070463\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"741.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-orange-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA ORANGE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (600, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"373\",\"code\":\"3800032070630\",\"name\":\"FLIRT VODKA  CHOCOLATE  700ML\",\"unit\":\"4\",\"cost\":\"741.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070630\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"741.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-chocolate-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA  CHOCOLATE  700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (601, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"389\",\"code\":\"3800032070654\",\"name\":\"FLIRT VODKA VANILLA 700ML\",\"unit\":\"4\",\"cost\":\"741.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"741.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-vanilla-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA VANILLA 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (602, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"387\",\"code\":\"3800032070708\",\"name\":\"FLIRT VODKA STRAWBERRY 700ML\",\"unit\":\"4\",\"cost\":\"741.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"3800032070708\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"741.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"flirt-vodka-strawberry-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FLIRT VODKA STRAWBERRY 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (603, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"440\",\"code\":\"38902147013528\",\"name\":\"GOLD PREMIUM 750ML\",\"unit\":\"4\",\"cost\":\"550.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"38902147013528\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"550.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gold-premium-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GOLD PREMIUM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (604, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"519\",\"code\":\"4067700014535\",\"name\":\"JAGERMEISTER LTR\",\"unit\":\"4\",\"cost\":\"2250.0000\",\"price\":\"2500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4067700014535\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"117\",\"supplier1price\":\"2250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jagermeister-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JAGERMEISTER LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (605, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"518\",\"code\":\"4067700019752\",\"name\":\"JAGERMEISTER  700ML\",\"unit\":\"4\",\"cost\":\"1900.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4067700019752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1900.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jagermeister-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JAGERMEISTER  700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (606, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"831\",\"code\":\"40822099\",\"name\":\"Sprite 350ml pls\",\"unit\":\"4\",\"cost\":\"31.4500\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"40822099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"31.4500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Sprite 350ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (607, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"352\",\"code\":\"40822921\",\"name\":\"fanta black current 330mls\",\"unit\":\"4\",\"cost\":\"24.1600\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"40822921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-black-current-330mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"fanta black current 330mls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (608, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"356\",\"code\":\"408229211\",\"name\":\"Fanta orange 330mls gls\",\"unit\":\"4\",\"cost\":\"24.1600\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"408229211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-orange-330mls-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Fanta orange 330mls gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (609, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"361\",\"code\":\"408229212\",\"name\":\"Fanta passion 330ml gls\",\"unit\":\"4\",\"cost\":\"24.1600\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"408229212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-passion-330ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Fanta passion 330ml gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (610, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"358\",\"code\":\"40822938\",\"name\":\"FANTA ORANGE 500ML PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"40822938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-orange-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA ORANGE 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (611, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"296\",\"code\":\"42117131\",\"name\":\"COKE 350ml pls\",\"unit\":\"4\",\"cost\":\"31.4500\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"42117131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"31.4500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"coke-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COKE 350ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (612, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"639\",\"code\":\"4211713100\",\"name\":\"MINUTE MAID (orange) 400ml pls\",\"unit\":\"4\",\"cost\":\"62.9000\",\"price\":\"80.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4211713100\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"62.9000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maid-orange-400ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID (orange) 400ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (613, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"637\",\"code\":\"421171310055\",\"name\":\"MINUTE MAID (apple) 400ml pls\",\"unit\":\"4\",\"cost\":\"55.4200\",\"price\":\"80.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"421171310055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"55.4200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maid-apple-400ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID (apple) 400ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (614, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"638\",\"code\":\"42117131007\",\"name\":\"MINUTE MAID (mango) 400ml pls\",\"unit\":\"4\",\"cost\":\"55.4200\",\"price\":\"80.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"42117131007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"55.4200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maid-mango-400ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID (mango) 400ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (615, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"640\",\"code\":\"42117131030\",\"name\":\"MINUTE MAID (tropical) 400ml pls\",\"unit\":\"4\",\"cost\":\"55.4200\",\"price\":\"80.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"42117131030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"55.4200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maid-tropical-400ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID (tropical) 400ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (616, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"847\",\"code\":\"421171311\",\"name\":\"STONEY 350ml pls\",\"unit\":\"4\",\"cost\":\"31.4500\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"421171311\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"31.4500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"stoney-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"STONEY 350ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (617, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"441\",\"code\":\"4260592920087\",\"name\":\"GOLD SEAL 16%\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4260592920087\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"49\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gold-seal-16\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GOLD SEAL 16%\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (618, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"316\",\"code\":\"44567890987654\",\"name\":\"DELEMONTE PINEAPPLEMANGO\",\"unit\":\"4\",\"cost\":\"195.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"44567890987654\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"55\",\"supplier1price\":\"195.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delemonte-pineapplemango\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELEMONTE PINEAPPLEMANGO\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (619, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"886\",\"code\":\"4600682000501\",\"name\":\"TUBORG\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4600682000501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tuborg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUBORG\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (620, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"787\",\"code\":\"4601823006383\",\"name\":\"saranski 500ml\",\"unit\":\"4\",\"cost\":\"521.0000\",\"price\":\"580.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4601823006383\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"521.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"saranski-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"saranski 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (621, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"786\",\"code\":\"4601823007069\",\"name\":\"saranski 1l\",\"unit\":\"4\",\"cost\":\"1040.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4601823007069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1040.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"saranski-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"saranski 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (622, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"628\",\"code\":\"4820000943864\",\"name\":\"MIKADO APRICOT WHITE 750ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000943864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-apricot-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO APRICOT WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (623, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"629\",\"code\":\"4820000943871\",\"name\":\"MIKADO CHERRY RED 750ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000943871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-cherry-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO CHERRY RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (624, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"635\",\"code\":\"4820000943888\",\"name\":\"MIKADO WHITE PLUM 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000943888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-white-plum-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO WHITE PLUM 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (625, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"634\",\"code\":\"4820000943895\",\"name\":\"MIKADO RED PLUM 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000943895\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-red-plum-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO RED PLUM 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (626, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"633\",\"code\":\"4820000944038\",\"name\":\"MIKADO RED BLACKBERRY 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000944038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-red-blackberry-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO RED BLACKBERRY 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (627, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"709\",\"code\":\"4820000944625\",\"name\":\"OREANDA BLUE BRUT 750ML\",\"unit\":\"4\",\"cost\":\"900.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000944625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"900.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oreanda-blue-brut-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OREANDA BLUE BRUT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (628, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"632\",\"code\":\"4820000946889\",\"name\":\"MIKADO PINEAPPLE WHITE 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000946889\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-pineapple-white-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO PINEAPPLE WHITE 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (629, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"630\",\"code\":\"4820000946902\",\"name\":\"MIKADO LICHI WHITE 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000946902\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-lichi-white-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO LICHI WHITE 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (630, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"631\",\"code\":\"4820000946926\",\"name\":\"MIKADO PASSION FRUIT 700ML\",\"unit\":\"4\",\"cost\":\"685.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000946926\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"685.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mikado-passion-fruit-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MIKADO PASSION FRUIT 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (631, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"797\",\"code\":\"4820000947305\",\"name\":\"SHUSTOFF 3YRS 500ML\",\"unit\":\"4\",\"cost\":\"680.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000947305\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"680.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"shustoff-3yrs-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SHUSTOFF 3YRS 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (632, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"799\",\"code\":\"4820000947343\",\"name\":\"SHUSTOFF 5YRS 500ML\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000947343\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"shustoff-5yrs-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SHUSTOFF 5YRS 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (633, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"798\",\"code\":\"4820000947947\",\"name\":\"SHUSTOFF 4YRS 500ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820000947947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"shustoff-4yrs-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SHUSTOFF 4YRS 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (634, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"710\",\"code\":\"4820071841151\",\"name\":\"OREANDA SEMI-SWEET 750ML\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820071841151\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oreanda-semi-sweet-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OREANDA SEMI-SWEET 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (635, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"711\",\"code\":\"4820071842547\",\"name\":\"OREANDA SWEET 750ML\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820071842547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oreanda-sweet-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OREANDA SWEET 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (636, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"463\",\"code\":\"4820080728825\",\"name\":\"HALF LOAF WHEAT 450ML\",\"unit\":\"4\",\"cost\":\"387.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820080728825\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"387.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"half-loaf-wheat-450ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HALF LOAF WHEAT 450ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (637, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"462\",\"code\":\"4820080728849\",\"name\":\"HALF LOAF RYE 450ML\",\"unit\":\"4\",\"cost\":\"387.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820080728849\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"387.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"half-loaf-rye-450ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HALF LOAF RYE 450ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (638, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"568\",\"code\":\"4820229031328\",\"name\":\"KHOR PLATINUM V 1LTR\",\"unit\":\"4\",\"cost\":\"1250.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229031328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"khor-platinum-v-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KHOR PLATINUM V 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (639, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"735\",\"code\":\"4820229031977\",\"name\":\"PERVACHOK HOMEMADE WHEAT 250ML\",\"unit\":\"4\",\"cost\":\"375.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229031977\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"375.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pervachok-homemade-wheat-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PERVACHOK HOMEMADE WHEAT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (640, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"739\",\"code\":\"4820229031984\",\"name\":\"PERVAKV HOMEMADE WHEAT 500ML\",\"unit\":\"4\",\"cost\":\"800.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229031984\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pervakv-homemade-wheat-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PERVAKV HOMEMADE WHEAT 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (641, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"736\",\"code\":\"4820229031991\",\"name\":\"PERVAK HOMEMADE WHEAT 700ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229031991\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pervak-homemade-wheat-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PERVAK HOMEMADE WHEAT 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (642, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"737\",\"code\":\"4820229032004\",\"name\":\"PERVAK HOMEMADE WHEAT LTR\",\"unit\":\"4\",\"cost\":\"1500.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229032004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pervak-homemade-wheat-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PERVAK HOMEMADE WHEAT LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (643, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"738\",\"code\":\"4820229033520\",\"name\":\"PERVAK PEPPER & HONEY 700ML\",\"unit\":\"4\",\"cost\":\"1400.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4820229033520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"113\",\"supplier1price\":\"1400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pervak-pepper-honey-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PERVAK PEPPER & HONEY 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (644, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"146\",\"code\":\"4840358000293\",\"name\":\"ASCONI WINES 750ml\",\"unit\":\"4\",\"cost\":\"1150.0000\",\"price\":\"1320.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4840358000293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"111\",\"supplier1price\":\"1150.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"asconi-wines-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ASCONI WINES 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (645, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"329\",\"code\":\"4840709003249\",\"name\":\"DONMONTAGE 500ML\",\"unit\":\"4\",\"cost\":\"670.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4840709003249\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"670.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"donmontage-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DONMONTAGE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (646, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"328\",\"code\":\"4840709003508\",\"name\":\"DONMONTAGE 250ML\",\"unit\":\"4\",\"cost\":\"225.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4840709003508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"225.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"donmontage-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DONMONTAGE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (647, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"330\",\"code\":\"4840709003515\",\"name\":\"DONMONTEGE L\",\"unit\":\"4\",\"cost\":\"1050.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"4840709003515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1050.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"donmontege-l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DONMONTEGE L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (648, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"186\",\"code\":\"5000196006652\",\"name\":\"BLACK & WHITE 250ML\",\"unit\":\"4\",\"cost\":\"310.0000\",\"price\":\"380.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000196006652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"114\",\"supplier1price\":\"310.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-white-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK & WHITE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (649, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"305\",\"code\":\"5000264000483\",\"name\":\"CREST SUPER\",\"unit\":\"4\",\"cost\":\"120.0000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000264000483\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"120.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"crest-super\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CREST SUPER\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (650, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"757\",\"code\":\"5000267011202\",\"name\":\"REDLABEL RED 3.5L\",\"unit\":\"4\",\"cost\":\"8600.0000\",\"price\":\"10500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267011202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"8600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"redlabel-red-35l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"REDLABEL RED 3.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (651, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"751\",\"code\":\"5000267013602\",\"name\":\"RED LABEL (johnny walker) 1 LITRE\",\"unit\":\"4\",\"cost\":\"1602.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267013602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1602.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"red-label-johnny-walker-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RED LABEL (johnny walker) 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (652, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"754\",\"code\":\"5000267014005\",\"name\":\"RED LABEL (johnny walker) 750ML\",\"unit\":\"4\",\"cost\":\"1282.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267014005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1282.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"red-label-johnny-walker-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RED LABEL (johnny walker) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (653, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"753\",\"code\":\"5000267014609\",\"name\":\"RED LABEL (johnny walker) 375ML\",\"unit\":\"4\",\"cost\":\"784.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267014609\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"784.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"red-label-johnny-walker-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RED LABEL (johnny walker) 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (654, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"752\",\"code\":\"5000267015200\",\"name\":\"RED LABEL (johnny walker) 200ML\",\"unit\":\"4\",\"cost\":\"506.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267015200\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"506.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"red-label-johnny-walker-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RED LABEL (johnny walker) 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (655, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"199\",\"code\":\"5000267023601\",\"name\":\"BLACK LABEL 1lITRE\",\"unit\":\"4\",\"cost\":\"3042.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267023601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"3042.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-label-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK LABEL 1lITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (656, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"198\",\"code\":\"5000267023625\",\"name\":\"black label 1l\",\"unit\":\"4\",\"cost\":\"3200.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267023625\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"3200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-label-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"black label 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (657, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"202\",\"code\":\"5000267024004\",\"name\":\"BLACK LABEL 750ML\",\"unit\":\"4\",\"cost\":\"2419.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267024004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"2419.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-label-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK LABEL 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (658, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"200\",\"code\":\"5000267024608\",\"name\":\"BLACK LABEL 375\",\"unit\":\"4\",\"cost\":\"1233.3000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267024608\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1233.3000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-label-375\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK LABEL 375\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (659, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"201\",\"code\":\"5000267129723\",\"name\":\"BLACK LABEL 3L\",\"unit\":\"4\",\"cost\":\"10800.0000\",\"price\":\"13000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267129723\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"10800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-label-3l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK LABEL 3L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (660, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"537\",\"code\":\"5000267177486\",\"name\":\"JOHNNIE WALKER (a song of fire) litre\",\"unit\":\"4\",\"cost\":\"3157.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267177486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"3157.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"johnnie-walker-a-song-of-fire-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOHNNIE WALKER (a song of fire) litre\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (661, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"538\",\"code\":\"5000267178486\",\"name\":\"JOHNNIE WALKER (a song of ice) litre\",\"unit\":\"4\",\"cost\":\"3157.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000267178486\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"3157.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"johnnie-walker-a-song-of-ice-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOHNNIE WALKER (a song of ice) litre\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (662, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"867\",\"code\":\"5000281036762\",\"name\":\"THE SINGLETON 750ML\",\"unit\":\"4\",\"cost\":\"3360.0000\",\"price\":\"3800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000281036762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"3360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"the-singleton-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"THE SINGLETON 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (663, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"442\",\"code\":\"5000289020701\",\"name\":\"GORDON \'S GIN 750ML\",\"unit\":\"4\",\"cost\":\"1360.0000\",\"price\":\"1750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000289020701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gordon-s-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GORDON \'S GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (664, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"443\",\"code\":\"5000289929417\",\"name\":\"GORDON PINK 750ML\",\"unit\":\"4\",\"cost\":\"1360.0000\",\"price\":\"1750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000289929417\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gordon-pink-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GORDON PINK 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (665, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"444\",\"code\":\"5000289933292\",\"name\":\"GORDONS GIN 350ML\",\"unit\":\"4\",\"cost\":\"642.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000289933292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"103\",\"supplier1price\":\"642.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gordons-gin-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GORDONS GIN 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (666, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"899\",\"code\":\"5000292001001\",\"name\":\"VAT 69 750ML\",\"unit\":\"4\",\"cost\":\"1160.0000\",\"price\":\"1280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000292001001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1160.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vat-69-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VAT 69 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (667, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"898\",\"code\":\"5000292263171\",\"name\":\"VAT 250ML\",\"unit\":\"4\",\"cost\":\"428.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000292263171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"114\",\"supplier1price\":\"428.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vat-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VAT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (668, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"254\",\"code\":\"5000299223031\",\"name\":\"CAPTAIN MORGAN SPICED GOLD 750ML\",\"unit\":\"4\",\"cost\":\"1440.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000299223031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"69\",\"supplier1price\":\"1440.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"captain-morgan-spiced-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPTAIN MORGAN SPICED GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (669, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"175\",\"code\":\"5000299618073\",\"name\":\"BEEFEATER LONDON PINK STRAWBERRY 750ML\",\"unit\":\"4\",\"cost\":\"1888.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"21\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000299618073\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1888.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"beefeater-london-pink-strawberry-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEEFEATER LONDON PINK STRAWBERRY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (670, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"174\",\"code\":\"5000329002230\",\"name\":\"Beefeater gin 750ml\",\"unit\":\"4\",\"cost\":\"1450.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5000329002230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"60\",\"supplier1price\":\"1450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"beefeater-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Beefeater gin 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (671, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"863\",\"code\":\"5010093210007\",\"name\":\"teachers 1l\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010093210007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"teachers-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"teachers 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (672, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"865\",\"code\":\"5010093226008\",\"name\":\"teachers highland cream 750ml\",\"unit\":\"4\",\"cost\":\"900.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010093226008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"900.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"teachers-highland-cream-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"teachers highland cream 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (673, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"743\",\"code\":\"5010103236645\",\"name\":\"POPOV (vodka) 750ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103236645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"popov-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"POPOV (vodka) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (674, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"508\",\"code\":\"5010103800051\",\"name\":\"J&B WHISKY 200ML\",\"unit\":\"4\",\"cost\":\"430.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103800051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"430.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jb-whisky-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"J&B WHISKY 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (675, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"509\",\"code\":\"5010103800303\",\"name\":\"J&B WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"1400.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103800303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jb-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"J&B WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (676, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"507\",\"code\":\"5010103800457\",\"name\":\"J$B 1 LTR\",\"unit\":\"4\",\"cost\":\"1760.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103800457\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"1760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jb-1-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"J$B 1 LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (677, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"428\",\"code\":\"5010103930628\",\"name\":\"GILBEYS 750ML\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930628\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GILBEYS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (678, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"427\",\"code\":\"5010103930666\",\"name\":\"Gilbeys 350ml\",\"unit\":\"4\",\"cost\":\"512.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"512.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Gilbeys 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (679, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"561\",\"code\":\"5010103930833\",\"name\":\"KENYA CANE(local)750ML\",\"unit\":\"4\",\"cost\":\"584.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930833\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"584.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-canelocal750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE(local)750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (680, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"556\",\"code\":\"5010103930840\",\"name\":\"KENYA CANE 350ML\",\"unit\":\"4\",\"cost\":\"296.0000\",\"price\":\"380.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"296.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (681, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"768\",\"code\":\"5010103930864\",\"name\":\"RICHOT 750ML\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"richot-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RICHOT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (682, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"767\",\"code\":\"5010103930871\",\"name\":\"RICHOT 350ML\",\"unit\":\"4\",\"cost\":\"512.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"512.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"richot-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RICHOT 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (683, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"234\",\"code\":\"5010103930963\",\"name\":\"BOND 7 (whisky) 750ML\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930963\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bond-7-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BOND 7 (whisky) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (684, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"233\",\"code\":\"5010103930970\",\"name\":\"BOND 7 (whisky) 350ML\",\"unit\":\"4\",\"cost\":\"512.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010103930970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"512.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bond-7-whisky-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BOND 7 (whisky) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (685, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"160\",\"code\":\"5010106111451\",\"name\":\"BALLANTINES 750ML\",\"unit\":\"4\",\"cost\":\"1395.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010106111451\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1395.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ballantines-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BALLANTINES 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (686, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"161\",\"code\":\"50101061114510\",\"name\":\"BALLANTINES CHRISTMASS 750ML\",\"unit\":\"4\",\"cost\":\"1395.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50101061114510\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1395.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ballantines-christmass-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BALLANTINES CHRISTMASS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (687, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"162\",\"code\":\"5010106111956\",\"name\":\"BALLANTINES LTR\",\"unit\":\"4\",\"cost\":\"2122.0000\",\"price\":\"2500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010106111956\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"2122.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ballantines-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BALLANTINES LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (688, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"287\",\"code\":\"5010196023313\",\"name\":\"CLAYMORE\",\"unit\":\"4\",\"cost\":\"688.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010196023313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"688.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"claymore\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CLAYMORE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (689, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"619\",\"code\":\"5010284100018\",\"name\":\"MALIBU RUM 750ML\",\"unit\":\"4\",\"cost\":\"1183.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010284100018\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1183.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"malibu-rum-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MALIBU RUM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (690, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"452\",\"code\":\"5010296002980\",\"name\":\"GREENALL\'S ORIGINAL  750ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010296002980\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"greenalls-original-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GREENALL\'S ORIGINAL  750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (691, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"453\",\"code\":\"5010296003260\",\"name\":\"GREENALL\'S PINK BERRY 750ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010296003260\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"greenalls-pink-berry-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GREENALL\'S PINK BERRY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (692, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"450\",\"code\":\"5010296007114\",\"name\":\"GREENALL\'S BLUE BERRY 750ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010296007114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"greenalls-blue-berry-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GREENALL\'S BLUE BERRY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (693, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"451\",\"code\":\"5010296011203\",\"name\":\"GREENALL\'S ORANGE 750ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010296011203\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"greenalls-orange-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GREENALL\'S ORANGE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (694, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"348\",\"code\":\"5010314020002\",\"name\":\"FAMOUSE GROUSE 200ML\",\"unit\":\"4\",\"cost\":\"215.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010314020002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"215.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"famouse-grouse-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAMOUSE GROUSE 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (695, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"347\",\"code\":\"5010314101015\",\"name\":\"FAMOUSE GROUSE 1 LITRE\",\"unit\":\"4\",\"cost\":\"1524.0000\",\"price\":\"1900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010314101015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1524.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"famouse-grouse-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAMOUSE GROUSE 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (696, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"346\",\"code\":\"5010314302504\",\"name\":\"FAMOUS GROUSE SMOKY 750ML\",\"unit\":\"4\",\"cost\":\"1690.0000\",\"price\":\"1900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010314302504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1690.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"famous-grouse-smoky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAMOUS GROUSE SMOKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (697, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"349\",\"code\":\"5010314350000\",\"name\":\"famouse grouse 350ml\",\"unit\":\"4\",\"cost\":\"760.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010314350000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"famouse-grouse-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"famouse grouse 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (698, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"350\",\"code\":\"5010314750008\",\"name\":\"FAMOUSE GROUSE 750ML\",\"unit\":\"4\",\"cost\":\"1350.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010314750008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1350.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"famouse-grouse-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAMOUSE GROUSE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (699, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"446\",\"code\":\"5010327000039\",\"name\":\"GRANTS 1 LITRE\",\"unit\":\"4\",\"cost\":\"1450.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327000039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"1450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grants-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRANTS 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (700, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"448\",\"code\":\"5010327000046\",\"name\":\"GRANTS 3\\/4 LTR\",\"unit\":\"4\",\"cost\":\"1060.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327000046\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"1060.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grants-34-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRANTS 3\\/4 LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (701, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"439\",\"code\":\"5010327000176\",\"name\":\"GLENFIDDICH WHISKY 750ml 12YRS\",\"unit\":\"4\",\"cost\":\"3450.0000\",\"price\":\"3800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327000176\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"3450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glenfiddich-whisky-750ml-12yrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GLENFIDDICH WHISKY 750ml 12YRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (702, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"449\",\"code\":\"5010327207117\",\"name\":\"GRANTS 375ML\",\"unit\":\"4\",\"cost\":\"590.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327207117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"590.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grants-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRANTS 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (703, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"447\",\"code\":\"5010327258003\",\"name\":\"GRANTS 250ml\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327258003\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grants-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRANTS 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (704, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"437\",\"code\":\"5010327302201\",\"name\":\"GLENFIDDICH 12YRS 1LTR\",\"unit\":\"4\",\"cost\":\"4700.0000\",\"price\":\"5500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327302201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"4700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glenfiddich-12yrs-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GLENFIDDICH 12YRS 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (705, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"438\",\"code\":\"5010327325125\",\"name\":\"Glenfiddich 15yrs 750ml\",\"unit\":\"4\",\"cost\":\"4760.0000\",\"price\":\"6000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327325125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"4760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glenfiddich-15yrs-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Glenfiddich 15yrs 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (706, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"436\",\"code\":\"5010327325132\",\"name\":\"GLENFFIDICH WHISKY 750ML18YRS\",\"unit\":\"4\",\"cost\":\"6490.0000\",\"price\":\"8000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327325132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"6490.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glenffidich-whisky-750ml18yrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GLENFFIDICH WHISKY 750ML18YRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (707, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"702\",\"code\":\"5010327605005\",\"name\":\"OLD SMUGGLER BLENDED SCOTCH WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"955.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327605005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"955.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"old-smuggler-blended-scotch-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OLD SMUGGLER BLENDED SCOTCH WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (708, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"286\",\"code\":\"5010327904214\",\"name\":\"CLAN MACGREGOR WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"760.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010327904214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"clan-macgregor-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CLAN MACGREGOR WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (709, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"153\",\"code\":\"5010677015615\",\"name\":\"BACARDI CARTA BLANCA 750ML\",\"unit\":\"4\",\"cost\":\"1035.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677015615\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1035.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bacardi-carta-blanca-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BACARDI CARTA BLANCA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (710, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"154\",\"code\":\"5010677015738\",\"name\":\"BACARDI CARTA BLANCA IL\",\"unit\":\"4\",\"cost\":\"1495.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677015738\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1495.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bacardi-carta-blanca-il\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BACARDI CARTA BLANCA IL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (711, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"165\",\"code\":\"5010677740036\",\"name\":\"BARCADI OAK HEART 700ML\",\"unit\":\"4\",\"cost\":\"1160.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677740036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1160.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"barcadi-oak-heart-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BARCADI OAK HEART 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (712, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"621\",\"code\":\"5010677914000\",\"name\":\"MARTINI 750MLROOSSO\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677914000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"martini-750mlroosso\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MARTINI 750MLROOSSO\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (713, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"620\",\"code\":\"5010677915007\",\"name\":\"marti rosso 1l\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677915007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"marti-rosso-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"marti rosso 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (714, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"622\",\"code\":\"5010677924009\",\"name\":\"MARTINI BLANCO 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010677924009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"martini-blanco-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MARTINI BLANCO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (715, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"929\",\"code\":\"5010752000321\",\"name\":\"WILLIAM LAWSONS 750ML\",\"unit\":\"4\",\"cost\":\"1045.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010752000321\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1045.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"william-lawsons-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WILLIAM LAWSONS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (716, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"928\",\"code\":\"5010752000352\",\"name\":\"WILLIAM LAWSONS 1 LTR\",\"unit\":\"4\",\"cost\":\"1358.0000\",\"price\":\"1550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010752000352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1358.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"william-lawsons-1-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WILLIAM LAWSONS 1 LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (717, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"930\",\"code\":\"5010752000420\",\"name\":\"WILLIAMSON 350ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010752000420\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"williamson-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WILLIAMSON 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (718, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"534\",\"code\":\"5010852037944\",\"name\":\"JOHN BANNERMANS 750ML\",\"unit\":\"4\",\"cost\":\"1185.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5010852037944\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1185.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"john-bannermans-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOHN BANNERMANS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (719, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"527\",\"code\":\"5011007003029\",\"name\":\"jameson 750ml\",\"unit\":\"4\",\"cost\":\"1600.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011007003029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jameson-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jameson 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (720, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"523\",\"code\":\"5011007003227\",\"name\":\"JAMESON 1 LTR\",\"unit\":\"4\",\"cost\":\"2092.0000\",\"price\":\"2400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011007003227\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"2092.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jameson-1-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JAMESON 1 LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (721, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"159\",\"code\":\"5011013100132\",\"name\":\"BAILEYS ORIGINAL 750ML\",\"unit\":\"4\",\"cost\":\"1720.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011013100132\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1720.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"baileys-original-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAILEYS ORIGINAL 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (722, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"158\",\"code\":\"5011013100194\",\"name\":\"BAILEYS ORIGINAL  375ML\",\"unit\":\"4\",\"cost\":\"880.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011013100194\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"880.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"baileys-original-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAILEYS ORIGINAL  375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (723, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"157\",\"code\":\"5011013932979\",\"name\":\"BAILEYS DELIGHT 750ML\",\"unit\":\"4\",\"cost\":\"802.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011013932979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"802.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"baileys-delight-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAILEYS DELIGHT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (724, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"156\",\"code\":\"5011013934386\",\"name\":\"Baileys delight 350ml\",\"unit\":\"4\",\"cost\":\"441.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5011013934386\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"441.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"baileys-delight-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Baileys delight 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (725, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"357\",\"code\":\"50112173\",\"name\":\"Fanta orange 500ml gls\",\"unit\":\"4\",\"cost\":\"41.1600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50112173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"41.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-orange-500ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Fanta orange 500ml gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (726, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"362\",\"code\":\"501121731\",\"name\":\"Fanta passion 500ml gls\",\"unit\":\"4\",\"cost\":\"41.1600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"501121731\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"41.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-passion-500ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Fanta passion 500ml gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (727, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"871\",\"code\":\"50112265\",\"name\":\"Tonic water 500ml\",\"unit\":\"4\",\"cost\":\"25.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50112265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"25.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tonic-water-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Tonic water 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (728, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"353\",\"code\":\"50112753\",\"name\":\"FANTA BLACK CURRENT 500ML PLS\",\"unit\":\"4\",\"cost\":\"52.7000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50112753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"52.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-black-current-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA BLACK CURRENT 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (729, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"536\",\"code\":\"5013967003972\",\"name\":\"JOHN BARR RED 750ML\",\"unit\":\"4\",\"cost\":\"845.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5013967003972\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"845.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"john-barr-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOHN BARR RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (730, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"535\",\"code\":\"5013967004030\",\"name\":\"JOHN BARR BLACK 750ML\",\"unit\":\"4\",\"cost\":\"1095.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5013967004030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1095.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"john-barr-black-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOHN BARR BLACK 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (731, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"189\",\"code\":\"50196081\",\"name\":\"BLACK & WHITE1L\",\"unit\":\"4\",\"cost\":\"1160.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50196081\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1160.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-white1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK & WHITE1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (732, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"187\",\"code\":\"50196111\",\"name\":\"BLACK & WHITE SCOTCH WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"880.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50196111\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"880.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-white-scotch-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK & WHITE SCOTCH WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (733, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"188\",\"code\":\"50196166\",\"name\":\"BLACK & WHITE WHISKY 350ML\",\"unit\":\"4\",\"cost\":\"456.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"50196166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"456.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-white-whisky-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK & WHITE WHISKY 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (734, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"793\",\"code\":\"5029704217830\",\"name\":\"SCOTTISH LEADER 3YR WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"1325.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5029704217830\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1325.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"scottish-leader-3yr-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SCOTTISH LEADER 3YR WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (735, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"792\",\"code\":\"5029704218134\",\"name\":\"SCOTTISH LEADER 12YR WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"2687.0000\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5029704218134\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2687.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"scottish-leader-12yr-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SCOTTISH LEADER 12YR WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (736, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"703\",\"code\":\"5060054612012\",\"name\":\"opener @ 150\",\"unit\":\"4\",\"cost\":\"70.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060054612012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"70.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"opener-150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"opener @ 150\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (737, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"651\",\"code\":\"5060166698799\",\"name\":\"MONISTER\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060166698799\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"monister\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MONISTER\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (738, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"745\",\"code\":\"5060466516632\",\"name\":\"POWER PLAY 500ML\",\"unit\":\"4\",\"cost\":\"47.3500\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060466516632\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"47.3500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"power-play-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"POWER PLAY 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (739, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"790\",\"code\":\"5060502970053\",\"name\":\"SCOTS GOLD BLACK  1L\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060502970053\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"scots-gold-black-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SCOTS GOLD BLACK  1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (740, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"791\",\"code\":\"5060502970091\",\"name\":\"SCOTS RED GOLD 1L\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060502970091\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"scots-red-gold-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SCOTS RED GOLD 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (741, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"746\",\"code\":\"5060608740253\",\"name\":\"PREDATOR ENERGY\",\"unit\":\"4\",\"cost\":\"39.0800\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060608740253\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"49\",\"supplier1price\":\"39.0800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"predator-energy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PREDATOR ENERGY\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (742, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"747\",\"code\":\"5060608747818\",\"name\":\"PREDATOR MANGO\",\"unit\":\"4\",\"cost\":\"39.0800\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5060608747818\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"39.0800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"predator-mango\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PREDATOR MANGO\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (743, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"517\",\"code\":\"5099873001370\",\"name\":\"JACKDANIELS  HONEY750ML\",\"unit\":\"4\",\"cost\":\"2500.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873001370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"2500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jackdaniels-honey750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACKDANIELS  HONEY750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (744, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"510\",\"code\":\"5099873006504\",\"name\":\"JACK DANIEL FIRE 700ML\",\"unit\":\"4\",\"cost\":\"2500.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873006504\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"2500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniel-fire-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIEL FIRE 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (745, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"825\",\"code\":\"5099873015506\",\"name\":\"southern comfort700ml\",\"unit\":\"4\",\"cost\":\"1467.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873015506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"1467.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"southern-comfort700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"southern comfort700ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (746, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"824\",\"code\":\"5099873015544\",\"name\":\"southern comfort350ml\",\"unit\":\"4\",\"cost\":\"620.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873015544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"620.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"southern-comfort350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"southern comfort350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (747, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"822\",\"code\":\"5099873016763\",\"name\":\"southern comfort 1l\",\"unit\":\"4\",\"cost\":\"1727.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873016763\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"1727.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"southern-comfort-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"southern comfort 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (748, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"515\",\"code\":\"5099873046173\",\"name\":\"JACK DANIELS 200ML\",\"unit\":\"4\",\"cost\":\"556.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873046173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"556.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniels-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIELS 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (749, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"512\",\"code\":\"5099873046968\",\"name\":\"JACK DANIEL HONEY LTR\",\"unit\":\"4\",\"cost\":\"3000.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873046968\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"111\",\"supplier1price\":\"3000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniel-honey-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIEL HONEY LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (750, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"511\",\"code\":\"5099873060704\",\"name\":\"JACK DANIEL HONEY 350ML\",\"unit\":\"4\",\"cost\":\"1360.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873060704\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniel-honey-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIEL HONEY 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (751, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"513\",\"code\":\"5099873089712\",\"name\":\"JACK DANIEL375ml\",\"unit\":\"4\",\"cost\":\"1360.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5099873089712\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniel375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIEL375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (752, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"257\",\"code\":\"52520000\",\"name\":\"CAR WASH\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"52520000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"87\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"car-wash\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAR WASH\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (753, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"812\",\"code\":\"5410316265188\",\"name\":\"SMIRNOFF BLACK LITRE\",\"unit\":\"4\",\"cost\":\"1850.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5410316265188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-black-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF BLACK LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (754, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"813\",\"code\":\"5410316943666\",\"name\":\"SMIRNOFF GOLD 750ML\",\"unit\":\"4\",\"cost\":\"1440.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5410316943666\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1440.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (755, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"816\",\"code\":\"5410316982382\",\"name\":\"SMIRNOFF ORANGE LITRE\",\"unit\":\"4\",\"cost\":\"1525.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5410316982382\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1525.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-orange-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF ORANGE LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (756, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"817\",\"code\":\"5410316982429\",\"name\":\"SMIRNOFF VANILLA 750ML\",\"unit\":\"4\",\"cost\":\"1450.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5410316982429\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-vanilla-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF VANILLA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (757, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"645\",\"code\":\"544110195987456\",\"name\":\"MINUTE MAID(tropical) 1LTR\",\"unit\":\"4\",\"cost\":\"102.9200\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"544110195987456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"102.9200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maidtropical-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID(tropical) 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (758, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"595\",\"code\":\"54411180\",\"name\":\"KREST 500ML PlS\",\"unit\":\"4\",\"cost\":\"41.6600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54411180\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"41.6600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"krest-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KREST 500ML PlS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (759, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"292\",\"code\":\"5449000000286\",\"name\":\"COCACOLA 2L PLS\",\"unit\":\"4\",\"cost\":\"158.3300\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000000286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"158.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cocacola-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COCACOLA 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (760, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"829\",\"code\":\"5449000004864\",\"name\":\"SPRITE 2L PLS\",\"unit\":\"4\",\"cost\":\"158.3300\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000004864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"158.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (761, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"821\",\"code\":\"544900000486497\",\"name\":\"SODA MIX 2L PLS\",\"unit\":\"4\",\"cost\":\"237.5000\",\"price\":\"270.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"544900000486497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"237.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"soda-mix-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SODA MIX 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (762, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"359\",\"code\":\"5449000028908\",\"name\":\"FANTA PASSION\",\"unit\":\"4\",\"cost\":\"156.6700\",\"price\":\"166.6700\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000028908\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"118\",\"supplier1price\":\"156.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-passion\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA PASSION\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (763, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"298\",\"code\":\"5449000028921\",\"name\":\"COKE1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000028921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"coke125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COKE1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (764, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"295\",\"code\":\"5449000028928\",\"name\":\"COKE 2L PLS\",\"unit\":\"4\",\"cost\":\"156.6700\",\"price\":\"166.6700\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000028928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"118\",\"supplier1price\":\"156.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"coke-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COKE 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (765, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"354\",\"code\":\"5449000028938\",\"name\":\"FANTA ORANGE 1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000028938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-orange-125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA ORANGE 1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (766, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"828\",\"code\":\"5449000028976\",\"name\":\"SPRITE 1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000028976\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE 1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (767, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"193\",\"code\":\"5449000113467\",\"name\":\"BLACK CURREN\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000113467\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-curren\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK CURREN\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (768, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"594\",\"code\":\"5449000139030\",\"name\":\"KREST 500ML pls\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000139030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"krest-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KREST 500ML pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (769, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"644\",\"code\":\"5449000195456\",\"name\":\"MINUTE MAID(orange) 1LTR\",\"unit\":\"4\",\"cost\":\"123.3300\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000195456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"123.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maidorange-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID(orange) 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (770, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"642\",\"code\":\"5449000195987450\",\"name\":\"MINUTE MAID(apple) 1LTR\",\"unit\":\"4\",\"cost\":\"102.6700\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000195987450\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"102.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maidapple-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID(apple) 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (771, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"590\",\"code\":\"5449000196903\",\"name\":\"KRES\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449000196903\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kres\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KRES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (772, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"643\",\"code\":\"54490005456\",\"name\":\"MINUTE MAID(mango) 1LTR\",\"unit\":\"4\",\"cost\":\"102.9200\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54490005456\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"102.9200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maidmango-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID(mango) 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (773, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"360\",\"code\":\"544900090096\",\"name\":\"FANTA PASSION 2L PLS\",\"unit\":\"4\",\"cost\":\"158.3300\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"544900090096\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"158.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-passion-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA PASSION 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (774, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"591\",\"code\":\"5449006708921\",\"name\":\"KREST 1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449006708921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"krest-125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KREST 1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (775, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"194\",\"code\":\"5449006728921\",\"name\":\"BLACK CURRENT 1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449006728921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-current-125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK CURRENT 1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (776, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"845\",\"code\":\"5449007828921\",\"name\":\"STONEY 1.25L PLS\",\"unit\":\"4\",\"cost\":\"95.8000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449007828921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"95.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"stoney-125l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"STONEY 1.25L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (777, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"827\",\"code\":\"5449010028928\",\"name\":\"SPRITE\",\"unit\":\"4\",\"cost\":\"156.6700\",\"price\":\"166.6700\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449010028928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"118\",\"supplier1price\":\"156.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (778, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"294\",\"code\":\"54490123\",\"name\":\"COCACOLA 500ML GLS\",\"unit\":\"4\",\"cost\":\"41.6600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54490123\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"41.6600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cocacola-500ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COCACOLA 500ML GLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (779, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"355\",\"code\":\"5449080028928\",\"name\":\"FANTA ORANGE 2L PLS\",\"unit\":\"4\",\"cost\":\"156.6700\",\"price\":\"166.6700\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5449080028928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"118\",\"supplier1price\":\"156.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-orange-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA ORANGE 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (780, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"833\",\"code\":\"54491069\",\"name\":\"SPRITE 500ML PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54491069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (781, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"832\",\"code\":\"54491182\",\"name\":\"SPRITE 500ML GLS\",\"unit\":\"4\",\"cost\":\"41.6600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54491182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"41.6600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-500ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE 500ML GLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (782, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"834\",\"code\":\"544911820\",\"name\":\"SPRITE 500ML PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"544911820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sprite-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPRITE 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (783, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"297\",\"code\":\"54491472\",\"name\":\"COKE 500ML PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54491472\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"coke-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COKE 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (784, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"197\",\"code\":\"544914720\",\"name\":\"BLACK CURRENT 500ML PLS\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"544914720\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-current-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK CURRENT 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (785, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"363\",\"code\":\"54493353\",\"name\":\"FANTA PASSION 500ML PLS\",\"unit\":\"4\",\"cost\":\"52.7000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"54493353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"52.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-passion-500ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FANTA PASSION 500ML PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (786, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"116\",\"code\":\"5453002980002\",\"name\":\"28 BLACK ACAI\",\"unit\":\"4\",\"cost\":\"500.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5453002980002\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"35\",\"supplier1price\":\"500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"28-black-acai\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"28 BLACK ACAI\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (787, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"117\",\"code\":\"5453002980330\",\"name\":\"28 BLACK CLASSIC\",\"unit\":\"4\",\"cost\":\"115.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5453002980330\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"35\",\"supplier1price\":\"115.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"28-black-classic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"28 BLACK CLASSIC\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (788, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"195\",\"code\":\"5479000028928\",\"name\":\"BLACK CURRENT 2L PLS\",\"unit\":\"4\",\"cost\":\"156.6700\",\"price\":\"166.6700\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5479000028928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"118\",\"supplier1price\":\"156.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-current-2l-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK CURRENT 2L PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (789, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"901\",\"code\":\"5564789524\",\"name\":\"vehicles tools\",\"unit\":\"4\",\"cost\":\"1.0000\",\"price\":\"1.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"19\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5564789524\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"1.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vehicles-tools\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"vehicles tools\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (790, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"365\",\"code\":\"5741000007624\",\"name\":\"FAXE 500ML\",\"unit\":\"4\",\"cost\":\"175.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5741000007624\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"175.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"faxe-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAXE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (791, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"366\",\"code\":\"5741000101025\",\"name\":\"FAXE PREMIUM 500ML\",\"unit\":\"4\",\"cost\":\"130.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5741000101025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"130.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"faxe-premium-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAXE PREMIUM 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (792, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"364\",\"code\":\"5741000134863\",\"name\":\"FAXE 330ML\",\"unit\":\"4\",\"cost\":\"125.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5741000134863\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"125.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"faxe-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FAXE 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (793, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"931\",\"code\":\"5906485301012\",\"name\":\"XL energy drinks\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"5906485301012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"53\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"xl-energy-drinks\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"XL energy drinks\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (794, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"337\",\"code\":\"6001108015136\",\"name\":\"DUDE MEESTER RESERVE 750ML\",\"unit\":\"4\",\"cost\":\"1499.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108015136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"1499.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dude-meester-reserve-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DUDE MEESTER RESERVE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (795, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"906\",\"code\":\"6001108016034\",\"name\":\"VICEROY 250ML\",\"unit\":\"4\",\"cost\":\"338.1600\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108016034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"338.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"viceroy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VICEROY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (796, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"290\",\"code\":\"6001108016041\",\"name\":\"CLUMBMAN MINT PUNCH 250ML\",\"unit\":\"4\",\"cost\":\"201.2900\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108016041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"201.2900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"clumbman-mint-punch-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CLUMBMAN MINT PUNCH 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (797, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"266\",\"code\":\"6001108016058\",\"name\":\"CASTLE (brand) 250ML\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"210.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108016058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"castle-brand-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASTLE (brand) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (798, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"788\",\"code\":\"6001108028044\",\"name\":\"SAVANNA PREMIUM CIDER DRY\",\"unit\":\"4\",\"cost\":\"189.7200\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108028044\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"189.7200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"savanna-premium-cider-dry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAVANNA PREMIUM CIDER DRY\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (799, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"582\",\"code\":\"6001108036285\",\"name\":\"KNIGHTS 200ML\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108036285\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"knights-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KNIGHTS 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (800, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"583\",\"code\":\"6001108036292\",\"name\":\"KNIGHTS 350ML\",\"unit\":\"4\",\"cost\":\"531.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108036292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"531.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"knights-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KNIGHTS 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (801, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"120\",\"code\":\"6001108049582\",\"name\":\"4TH STREET SWEET RED 750ML\",\"unit\":\"4\",\"cost\":\"605.1000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108049582\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"605.1000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (802, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"125\",\"code\":\"6001108049599\",\"name\":\"4TH STREET SWEET WHITE 750ML\",\"unit\":\"4\",\"cost\":\"605.1000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108049599\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"605.1000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (803, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"123\",\"code\":\"6001108049605\",\"name\":\"4TH STREET SWEET ROSE 750ML\",\"unit\":\"4\",\"cost\":\"605.1000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108049605\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"605.1000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-rose-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET ROSE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (804, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"118\",\"code\":\"6001108049612\",\"name\":\"4th street natural sweet red 1.5l\",\"unit\":\"4\",\"cost\":\"1280.0000\",\"price\":\"1550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108049612\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-natural-sweet-red-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4th street natural sweet red 1.5l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (805, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"121\",\"code\":\"6001108049636\",\"name\":\"4TH STREET SWEET ROSE 1.5L\",\"unit\":\"4\",\"cost\":\"1280.0000\",\"price\":\"1550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108049636\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-rose-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET ROSE 1.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (806, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"487\",\"code\":\"6001108055187\",\"name\":\"HUNTERS DRY 330ML\",\"unit\":\"4\",\"cost\":\"128.8200\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108055187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"128.8200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunters-dry-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTERS DRY 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (807, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"119\",\"code\":\"6001108059178\",\"name\":\"4TH STREET SWEET RED 5LTRS\",\"unit\":\"4\",\"cost\":\"2877.6100\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108059178\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2877.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-red-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET RED 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (808, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"122\",\"code\":\"6001108059208\",\"name\":\"4TH STREET SWEET ROSE 5LTRS\",\"unit\":\"4\",\"cost\":\"2761.3300\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108059208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2761.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-rose-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET ROSE 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (809, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"124\",\"code\":\"600110805922286\",\"name\":\"4TH STREET SWEET WHITE 5LTRS\",\"unit\":\"4\",\"cost\":\"2761.3300\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"600110805922286\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2761.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"4th-street-sweet-white-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"4TH STREET SWEET WHITE 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (810, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"718\",\"code\":\"6001108068361\",\"name\":\"OVERMEER SWEET ROSE 5LTRS\",\"unit\":\"4\",\"cost\":\"1950.0000\",\"price\":\"21000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108068361\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"1950.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"overmeer-sweet-rose-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OVERMEER SWEET ROSE 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (811, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"306\",\"code\":\"6001108092496\",\"name\":\"CRUZ VODKA 750ML\",\"unit\":\"4\",\"cost\":\"1201.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108092496\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1201.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cruz-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CRUZ VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (812, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"905\",\"code\":\"6001108097965\",\"name\":\"VICEROY 10YRS 750ML\",\"unit\":\"4\",\"cost\":\"2375.0000\",\"price\":\"2600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001108097965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2375.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"viceroy-10yrs-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VICEROY 10YRS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (813, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"179\",\"code\":\"6001398100970\",\"name\":\"BERTRAMS  VO 750ML\",\"unit\":\"4\",\"cost\":\"792.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001398100970\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"792.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bertrams-vo-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BERTRAMS  VO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (814, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"835\",\"code\":\"6001398101281\",\"name\":\"SQUADRON DARK RUM 750ML\",\"unit\":\"4\",\"cost\":\"632.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001398101281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"632.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"squadron-dark-rum-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SQUADRON DARK RUM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (815, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"610\",\"code\":\"6001398117770\",\"name\":\"LUPIN BLACK SABUCA 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001398117770\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"lupin-black-sabuca-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LUPIN BLACK SABUCA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (816, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"611\",\"code\":\"6001398119446\",\"name\":\"LUPINI SABUCA GOLD 750ML\",\"unit\":\"4\",\"cost\":\"760.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001398119446\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"lupini-sabuca-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LUPINI SABUCA GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (817, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"714\",\"code\":\"6001452058001\",\"name\":\"OVERMEER GRAND CRU 5LTRS\",\"unit\":\"4\",\"cost\":\"1950.0000\",\"price\":\"2100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452058001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"1950.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"overmeer-grand-cru-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OVERMEER GRAND CRU 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (818, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"717\",\"code\":\"6001452061001\",\"name\":\"OVERMEER STEIN WHITE 5LTRS\",\"unit\":\"4\",\"cost\":\"1975.0000\",\"price\":\"2100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452061001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1975.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"overmeer-stein-white-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OVERMEER STEIN WHITE 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (819, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"584\",\"code\":\"6001452113014\",\"name\":\"knights 750ml\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"850.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452113014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"knights-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"knights 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (820, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"672\",\"code\":\"6001452258005\",\"name\":\"Nederburg tsauvignon  blanc 750ml\",\"unit\":\"4\",\"cost\":\"1122.6900\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452258005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"1122.6900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"nederburg-tsauvignon-blanc-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Nederburg tsauvignon  blanc 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (821, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"673\",\"code\":\"6001452273893\",\"name\":\"nedreburg stein 250ml\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452273893\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"nedreburg-stein-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"nedreburg stein 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (822, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"670\",\"code\":\"6001452280853\",\"name\":\"nederburg  baronne250ml\",\"unit\":\"4\",\"cost\":\"380.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452280853\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"380.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"nederburg-baronne250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"nederburg  baronne250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (823, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"671\",\"code\":\"6001452301862\",\"name\":\"Nederburg cabernet sauvignon 750ml\",\"unit\":\"4\",\"cost\":\"1407.1700\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452301862\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1407.1700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"nederburg-cabernet-sauvignon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Nederburg cabernet sauvignon 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (824, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"862\",\"code\":\"6001452493000\",\"name\":\"TASSENBERG 2LTRS\",\"unit\":\"4\",\"cost\":\"800.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452493000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tassenberg-2ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TASSENBERG 2LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (825, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"716\",\"code\":\"6001452578004\",\"name\":\"OVERMEER SMOOTH RED 5LTRS\",\"unit\":\"4\",\"cost\":\"1950.0000\",\"price\":\"2100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001452578004\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"1950.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"overmeer-smooth-red-5ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OVERMEER SMOOTH RED 5LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (826, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"895\",\"code\":\"6001466004117\",\"name\":\"TWO KEYS 750ML\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001466004117\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"two-keys-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TWO KEYS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (827, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"339\",\"code\":\"6001495000326\",\"name\":\"DURBANVILLE HILLS\",\"unit\":\"4\",\"cost\":\"700.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495000326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"durbanville-hills\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DURBANVILLE HILLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (828, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"338\",\"code\":\"6001495000821\",\"name\":\"DUDE MEESTER VSOB 750ML\",\"unit\":\"4\",\"cost\":\"800.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495000821\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dude-meester-vsob-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DUDE MEESTER VSOB 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (829, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"765\",\"code\":\"6001495001064\",\"name\":\"RICHELIEU 375ML\",\"unit\":\"4\",\"cost\":\"375.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495001064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"375.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"richelieu-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RICHELIEU 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (830, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"336\",\"code\":\"6001495001293\",\"name\":\"DUDE MEESTER DEMANT 1L\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495001293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dude-meester-demant-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DUDE MEESTER DEMANT 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (831, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"144\",\"code\":\"6001495062478\",\"name\":\"amarula 375ml\",\"unit\":\"4\",\"cost\":\"853.7000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495062478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"853.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"amarula-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"amarula 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (832, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"145\",\"code\":\"6001495062508\",\"name\":\"AMARULA 750ML\",\"unit\":\"4\",\"cost\":\"1565.2200\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495062508\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1565.2200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"amarula-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AMARULA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (833, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"143\",\"code\":\"6001495062669\",\"name\":\"AMARULA 1 LITRE\",\"unit\":\"4\",\"cost\":\"2173.9100\",\"price\":\"2400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495062669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"2173.9100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"amarula-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AMARULA 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (834, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"278\",\"code\":\"6001495080007\",\"name\":\"Chamdor white 750ml\",\"unit\":\"4\",\"cost\":\"490.1200\",\"price\":\"620.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"29\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495080007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"490.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chamdor-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Chamdor white 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (835, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"277\",\"code\":\"6001495080106\",\"name\":\"Chamdor red 750ml\",\"unit\":\"4\",\"cost\":\"490.1200\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"29\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495080106\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"490.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chamdor-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Chamdor red 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (836, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"276\",\"code\":\"6001495200283\",\"name\":\"cellarcask red 300ml\",\"unit\":\"4\",\"cost\":\"380.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495200283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"380.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellarcask-red-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"cellarcask red 300ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (837, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"335\",\"code\":\"6001495201501\",\"name\":\"DROSTIDYU HOF RED 750ML\",\"unit\":\"4\",\"cost\":\"592.8900\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495201501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"592.8900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"drostidyu-hof-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DROSTIDYU HOF RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (838, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"334\",\"code\":\"6001495201600\",\"name\":\"drostidy-hof 5l red\",\"unit\":\"4\",\"cost\":\"3059.2900\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495201600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"3059.2900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"drostidy-hof-5l-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"drostidy-hof 5l red\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (839, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"332\",\"code\":\"6001495203055\",\"name\":\"DROSTDY HOF WHITE 750ML\",\"unit\":\"4\",\"cost\":\"592.8900\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495203055\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"592.8900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"drostdy-hof-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DROSTDY HOF WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (840, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"331\",\"code\":\"6001495203116\",\"name\":\"DROST DY HOF PREMIER GRAND CRU 5L white\",\"unit\":\"4\",\"cost\":\"3059.2900\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001495203116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"3059.2900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"drost-dy-hof-premier-grand-cru-5l-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DROST DY HOF PREMIER GRAND CRU 5L white\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (841, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"907\",\"code\":\"6001496011772\",\"name\":\"VICEROY 350ML\",\"unit\":\"4\",\"cost\":\"523.3500\",\"price\":\"580.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496011772\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"523.3500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"viceroy-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VICEROY 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (842, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"908\",\"code\":\"6001496011796\",\"name\":\"VICEROY 750ML\",\"unit\":\"4\",\"cost\":\"1030.6000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496011796\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"1030.6000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"viceroy-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VICEROY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (843, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"271\",\"code\":\"6001496301705\",\"name\":\"CELLAR (cask) 750ML White\",\"unit\":\"4\",\"cost\":\"687.7500\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496301705\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"687.7500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellar-cask-750ml-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CELLAR (cask) 750ML White\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (844, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"272\",\"code\":\"6001496301743\",\"name\":\"CELLAR CASK Johannesburg WHITE 5L\",\"unit\":\"4\",\"cost\":\"3003.9500\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496301743\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"3003.9500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellar-cask-johannesburg-white-5l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CELLAR CASK Johannesburg WHITE 5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (845, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"270\",\"code\":\"6001496301804\",\"name\":\"CELLAR (cask) 750ML Red\",\"unit\":\"4\",\"cost\":\"687.7500\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496301804\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"687.7500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellar-cask-750ml-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CELLAR (cask) 750ML Red\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (846, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"275\",\"code\":\"6001496301842\",\"name\":\"cellarcask johhannesberger 5l red\",\"unit\":\"4\",\"cost\":\"3003.9500\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496301842\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"3003.9500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellarcask-johhannesberger-5l-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"cellarcask johhannesberger 5l red\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (847, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"268\",\"code\":\"6001496560058\",\"name\":\"CASTLE (brand) 750ML\",\"unit\":\"4\",\"cost\":\"387.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496560058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"387.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"castle-brand-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASTLE (brand) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (848, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"267\",\"code\":\"6001496560157\",\"name\":\"CASTLE (brand) 350ML\",\"unit\":\"4\",\"cost\":\"205.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496560157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"205.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"castle-brand-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASTLE (brand) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (849, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"289\",\"code\":\"6001496566050\",\"name\":\"CLUB MAN 750ML\",\"unit\":\"4\",\"cost\":\"507.2500\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496566050\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"507.2500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"club-man-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CLUB MAN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (850, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"288\",\"code\":\"6001496566166\",\"name\":\"CLUB MAN 350ML\",\"unit\":\"4\",\"cost\":\"237.1700\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001496566166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"237.1700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"club-man-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CLUB MAN 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (851, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"840\",\"code\":\"6001812011912\",\"name\":\"ST. ANNA 750ML\",\"unit\":\"4\",\"cost\":\"626.0000\",\"price\":\"680.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812011912\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"626.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-anna-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ST. ANNA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (852, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"836\",\"code\":\"6001812011936\",\"name\":\"st claire\",\"unit\":\"4\",\"cost\":\"528.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812011936\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"528.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-claire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"st claire\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (853, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"841\",\"code\":\"6001812011950\",\"name\":\"ST. CELINE 750ML\",\"unit\":\"4\",\"cost\":\"626.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812011950\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"626.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"st-celine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ST. CELINE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (854, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"945\",\"code\":\"6001812500010\",\"name\":\"zappa black 750ml\",\"unit\":\"4\",\"cost\":\"1033.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812500010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1033.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zappa-black-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"zappa black 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (855, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"941\",\"code\":\"6001812500027\",\"name\":\"ZAPPA (blue) 750ML\",\"unit\":\"4\",\"cost\":\"1033.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812500027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1033.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zappa-blue-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZAPPA (blue) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (856, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"944\",\"code\":\"6001812500034\",\"name\":\"ZAPPA (red) 750ML\",\"unit\":\"4\",\"cost\":\"1179.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812500034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1179.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zappa-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZAPPA (red) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (857, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"943\",\"code\":\"6001812500041\",\"name\":\"ZAPPA (original) 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812500041\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zappa-original-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZAPPA (original) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (858, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"942\",\"code\":\"6001812500058\",\"name\":\"ZAPPA (green) 750ML\",\"unit\":\"4\",\"cost\":\"1033.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812500058\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1033.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zappa-green-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZAPPA (green) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (859, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"239\",\"code\":\"6001812501109\",\"name\":\"buttlers blue curacao 750ml\",\"unit\":\"4\",\"cost\":\"1250.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812501109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"buttlers-blue-curacao-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"buttlers blue curacao 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (860, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"861\",\"code\":\"6001812901015\",\"name\":\"TANG APPLE SOUR 750ML\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812901015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tang-apple-sour-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TANG APPLE SOUR 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (861, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"848\",\"code\":\"6001812942001\",\"name\":\"STRAWBERRY LIPS 750ML\",\"unit\":\"4\",\"cost\":\"1300.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6001812942001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"strawberry-lips-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"STRAWBERRY LIPS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (862, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"770\",\"code\":\"6002039005753\",\"name\":\"ROBERTSON SWEET WHITE 750ML\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002039005753\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"robertson-sweet-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROBERTSON SWEET WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (863, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"769\",\"code\":\"6002039006019\",\"name\":\"ROBERTSON SWEET RED 750ML\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002039006019\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"robertson-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROBERTSON SWEET RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (864, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"397\",\"code\":\"60022690001518\",\"name\":\"FOUR COUSINS SWEET RED 3LTRS\",\"unit\":\"4\",\"cost\":\"1675.0000\",\"price\":\"2300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"60022690001518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1675.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-sweet-red-3ltrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS SWEET RED 3LTRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (865, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"399\",\"code\":\"6002269000153\",\"name\":\"FOUR COUSINS SWEET ROSE 1.5L\",\"unit\":\"4\",\"cost\":\"1256.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000153\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1256.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-sweet-rose-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS SWEET ROSE 1.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (866, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"391\",\"code\":\"6002269000214\",\"name\":\"FOUR COUSIN 1.5 DRY RED\",\"unit\":\"4\",\"cost\":\"1256.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000214\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1256.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousin-15-dry-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSIN 1.5 DRY RED\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (867, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"392\",\"code\":\"6002269000368\",\"name\":\"FOUR COUSIN 1.5 DRY WHITE\",\"unit\":\"4\",\"cost\":\"1256.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1256.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousin-15-dry-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSIN 1.5 DRY WHITE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (868, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"395\",\"code\":\"6002269000542\",\"name\":\"FOUR COUSINS NATURAL SWEET RED 1.5L\",\"unit\":\"4\",\"cost\":\"1280.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000542\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-natural-sweet-red-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS NATURAL SWEET RED 1.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (869, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"400\",\"code\":\"6002269000559\",\"name\":\"FOUR COUSINS SWEET WHITE 750ML\",\"unit\":\"4\",\"cost\":\"595.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000559\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"595.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-sweet-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS SWEET WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (870, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"398\",\"code\":\"6002269000566\",\"name\":\"FOUR COUSINS SWEET RED 750ML\",\"unit\":\"4\",\"cost\":\"595.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000566\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"595.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS SWEET RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (871, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"396\",\"code\":\"6002269000702\",\"name\":\"FOUR COUSINS NATURAL SWEET WHITE 1.5L\",\"unit\":\"4\",\"cost\":\"1280.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269000702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-natural-sweet-white-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS NATURAL SWEET WHITE 1.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (872, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"393\",\"code\":\"6002269002676\",\"name\":\"FOUR COUSINS 5L SWEET RED\",\"unit\":\"4\",\"cost\":\"3000.0000\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269002676\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"3000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-5l-sweet-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS 5L SWEET RED\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (873, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"394\",\"code\":\"6002269002997\",\"name\":\"FOUR COUSINS 5L SWEET WHITE\",\"unit\":\"4\",\"cost\":\"3000.0000\",\"price\":\"3200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6002269002997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"3000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"four-cousins-5l-sweet-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FOUR COUSINS 5L SWEET WHITE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (874, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"658\",\"code\":\"6004442000042\",\"name\":\"NAMAQUA BLANC de BLANC 5 LITRE\",\"unit\":\"4\",\"cost\":\"2150.0000\",\"price\":\"2400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442000042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"2150.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-blanc-de-blanc-5-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA BLANC de BLANC 5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (875, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"659\",\"code\":\"6004442001407\",\"name\":\"NAMAQUA JOHANNISBERGER 5 LITRE\",\"unit\":\"4\",\"cost\":\"2575.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442001407\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"2575.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-johannisberger-5-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA JOHANNISBERGER 5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (876, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"662\",\"code\":\"6004442001506\",\"name\":\"NAMAQUA RED (wine) 5 LITRE\",\"unit\":\"4\",\"cost\":\"2575.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442001506\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"2575.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-red-wine-5-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA RED (wine) 5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (877, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"660\",\"code\":\"6004442002497\",\"name\":\"NAMAQUA NATURAL SWEET RED (wine) 5 LITRE\",\"unit\":\"4\",\"cost\":\"2575.0000\",\"price\":\"2800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442002497\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"2575.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-natural-sweet-red-wine-5-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA NATURAL SWEET RED (wine) 5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (878, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"657\",\"code\":\"6004442002749\",\"name\":\"NAMAQUA BLANC 750ML\",\"unit\":\"4\",\"cost\":\"604.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442002749\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"604.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-blanc-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA BLANC 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (879, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"661\",\"code\":\"6004442004026\",\"name\":\"namaqua natural sweet red 750ml\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442004026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-natural-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"namaqua natural sweet red 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (880, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"663\",\"code\":\"6004442004033\",\"name\":\"NAMAQUA SWEET WHITE (wine)  750ML\",\"unit\":\"4\",\"cost\":\"596.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004442004033\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"596.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"namaqua-sweet-white-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAMAQUA SWEET WHITE (wine)  750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (881, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"903\",\"code\":\"6004443000805\",\"name\":\"VERSUS (white) wine 1 LITRE\",\"unit\":\"4\",\"cost\":\"1100.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004443000805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"versus-white-wine-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VERSUS (white) wine 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (882, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"904\",\"code\":\"6004443001116\",\"name\":\"VERSUS RED 1L\",\"unit\":\"4\",\"cost\":\"1100.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004443001116\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"versus-red-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VERSUS RED 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (883, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"855\",\"code\":\"6004786010226\",\"name\":\"SWEET VERSUS RED (wine) 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004786010226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sweet-versus-red-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SWEET VERSUS RED (wine) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (884, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"856\",\"code\":\"6004786010240\",\"name\":\"SWEET VERSUS WHITE (wine) 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6004786010240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sweet-versus-white-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SWEET VERSUS WHITE (wine) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (885, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"608\",\"code\":\"6008835000930\",\"name\":\"LIMEJUICE 700ML\",\"unit\":\"4\",\"cost\":\"116.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6008835000930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"116.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"limejuice-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LIMEJUICE 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (886, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"607\",\"code\":\"6008835000947\",\"name\":\"LIME JUICE 1.5 LITRE\",\"unit\":\"4\",\"cost\":\"179.1700\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6008835000947\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"179.1700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"lime-juice-15-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LIME JUICE 1.5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (887, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"324\",\"code\":\"6009602545289\",\"name\":\"DELUSH SWEET WHITE\",\"unit\":\"4\",\"cost\":\"590.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009602545289\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"590.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delush-sweet-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELUSH SWEET WHITE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (888, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"323\",\"code\":\"6009602545326\",\"name\":\"DELUSH\",\"unit\":\"4\",\"cost\":\"590.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009602545326\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"590.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"delush\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DELUSH\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (889, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"893\",\"code\":\"6009603340555\",\"name\":\"TUSKER MALT BOTTLE 330ML\",\"unit\":\"4\",\"cost\":\"161.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009603340555\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"161.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-malt-bottle-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER MALT BOTTLE 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (890, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"570\",\"code\":\"6009603930541\",\"name\":\"KIBAO 350ML\",\"unit\":\"4\",\"cost\":\"257.6500\",\"price\":\"320.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009603930541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"257.6500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KIBAO 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (891, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"245\",\"code\":\"6009603930817\",\"name\":\"caprice dry red 1l\",\"unit\":\"4\",\"cost\":\"563.6100\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009603930817\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"563.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-dry-red-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"caprice dry red 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (892, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"577\",\"code\":\"6009603930954\",\"name\":\"KING FISHER 300ML wine\",\"unit\":\"4\",\"cost\":\"144.9300\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009603930954\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"144.9300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"king-fisher-300ml-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KING FISHER 300ML wine\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (893, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"571\",\"code\":\"6009603930992\",\"name\":\"KIBAO 750ML\",\"unit\":\"4\",\"cost\":\"483.0900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009603930992\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"483.0900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KIBAO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (894, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"151\",\"code\":\"6009644549320\",\"name\":\"AZAM ENERGY  DRINK\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009644549320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"67\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"azam-energy-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AZAM ENERGY  DRINK\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (895, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"190\",\"code\":\"6009675642007\",\"name\":\"black bird natural sweet red 750ml\",\"unit\":\"4\",\"cost\":\"700.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675642007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-bird-natural-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"black bird natural sweet red 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (896, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"191\",\"code\":\"6009675642021\",\"name\":\"black bird natural sweet rose 750ml\",\"unit\":\"4\",\"cost\":\"700.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675642021\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-bird-natural-sweet-rose-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"black bird natural sweet rose 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (897, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"192\",\"code\":\"6009675642045\",\"name\":\"black bird natural sweetwhite750ml\",\"unit\":\"4\",\"cost\":\"700.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675642045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-bird-natural-sweetwhite750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"black bird natural sweetwhite750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (898, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"181\",\"code\":\"6009675692422\",\"name\":\"BEST (cream) 750ML\",\"unit\":\"4\",\"cost\":\"805.1500\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675692422\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"805.1500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-cream-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST (cream) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (899, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"183\",\"code\":\"6009675692576\",\"name\":\"BEST (whisky) 750ML\",\"unit\":\"4\",\"cost\":\"668.2800\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675692576\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"668.2800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST (whisky) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (900, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"182\",\"code\":\"6009675695225\",\"name\":\"BEST (whisky) 250ML\",\"unit\":\"4\",\"cost\":\"249.6000\",\"price\":\"300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675695225\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"249.6000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-whisky-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST (whisky) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (901, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"180\",\"code\":\"6009675695232\",\"name\":\"BEST (cream) 250ML\",\"unit\":\"4\",\"cost\":\"281.8000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009675695232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"281.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-cream-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST (cream) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (902, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"649\",\"code\":\"6009676518707\",\"name\":\"MOHAN\'S NATURAL SWEET WHITE 750ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009676518707\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mohans-natural-sweet-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOHAN\'S NATURAL SWEET WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (903, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"648\",\"code\":\"6009676518769\",\"name\":\"MOHAN\'S NATURAL SWEET RED 750ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009676518769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mohans-natural-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOHAN\'S NATURAL SWEET RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (904, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"647\",\"code\":\"6009676519216\",\"name\":\"MOHAN\'S DRY WHITE SIGNATURE 750ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009676519216\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mohans-dry-white-signature-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOHAN\'S DRY WHITE SIGNATURE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:55:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (905, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"646\",\"code\":\"6009676519988\",\"name\":\"MOHAN\'S DRY RED SIGNATURE 750ML\",\"unit\":\"4\",\"cost\":\"520.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009676519988\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"520.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mohans-dry-red-signature-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOHAN\'S DRY RED SIGNATURE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (906, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"445\",\"code\":\"6009708010131\",\"name\":\"GRACE DU ROI GOLD 750ML\",\"unit\":\"4\",\"cost\":\"913.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009708010131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"913.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grace-du-roi-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRACE DU ROI GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (907, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"552\",\"code\":\"6009708010247\",\"name\":\"KENSINGTON DRY GIN 750ML\",\"unit\":\"4\",\"cost\":\"790.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009708010247\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"790.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kensington-dry-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENSINGTON DRY GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (908, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"916\",\"code\":\"6009708010339\",\"name\":\"WAVE DANCER SWEET WHITE 750ML\",\"unit\":\"4\",\"cost\":\"585.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009708010339\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"585.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"wave-dancer-sweet-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WAVE DANCER SWEET WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (909, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"842\",\"code\":\"6009708010346\",\"name\":\"STAR CHASER SWEET RED 750ML\",\"unit\":\"4\",\"cost\":\"585.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009708010346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"585.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"star-chaser-sweet-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"STAR CHASER SWEET RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (910, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"849\",\"code\":\"6009708010353\",\"name\":\"SUN CHASER SWEET ROSE 750ML\",\"unit\":\"4\",\"cost\":\"585.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6009708010353\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"585.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sun-chaser-sweet-rose-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SUN CHASER SWEET ROSE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (911, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"689\",\"code\":\"6091023016059\",\"name\":\"NEW GROVE (SPICED) 750ML\",\"unit\":\"4\",\"cost\":\"812.0000\",\"price\":\"950.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6091023016059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"812.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"new-grove-spiced-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEW GROVE (SPICED) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (912, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"566\",\"code\":\"6091023016097\",\"name\":\"KGB caramel\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6091023016097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kgb-caramel\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KGB caramel\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (913, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"690\",\"code\":\"6091023016752\",\"name\":\"new grove cafe\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6091023016752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"new-grove-cafe\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"new grove cafe\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (914, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"567\",\"code\":\"6091023018473\",\"name\":\"KGB classic\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6091023018473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kgb-classic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KGB classic\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (915, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"565\",\"code\":\"6091023018480\",\"name\":\"KGB (limon)\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6091023018480\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kgb-limon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KGB (limon)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (916, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"433\",\"code\":\"611287965\",\"name\":\"glen rock 750ml\",\"unit\":\"4\",\"cost\":\"540.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"611287965\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"540.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glen-rock-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"glen rock 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (917, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"653\",\"code\":\"6141231230331\",\"name\":\"MOONWALKER 750ML\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6141231230331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"moonwalker-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOONWALKER 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (918, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"580\",\"code\":\"61611004200212\",\"name\":\"kingfisher bottle\",\"unit\":\"4\",\"cost\":\"15.0000\",\"price\":\"15.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"61611004200212\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"15.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kingfisher-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kingfisher bottle\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (919, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"581\",\"code\":\"61611004200213\",\"name\":\"kingfisher crates\",\"unit\":\"4\",\"cost\":\"120.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"61611004200213\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"120.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kingfisher-crates\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kingfisher crates\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (920, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"579\",\"code\":\"6161100420038\",\"name\":\"kingfisher apple 300ml\",\"unit\":\"4\",\"cost\":\"127.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420038\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"127.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kingfisher-apple-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kingfisher apple 300ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (921, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"578\",\"code\":\"6161100420045\",\"name\":\"KING FISHER LIGHT wine 300ML\",\"unit\":\"4\",\"cost\":\"144.6000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"144.6000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"king-fisher-light-wine-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KING FISHER LIGHT wine 300ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (922, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"636\",\"code\":\"6161100420137\",\"name\":\"milano rosso\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"milano-rosso\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"milano rosso\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (923, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"454\",\"code\":\"6161100420267\",\"name\":\"GRENADINE SYRUP 750ML\",\"unit\":\"4\",\"cost\":\"305.9600\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420267\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"305.9600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"grenadine-syrup-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GRENADINE SYRUP 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (924, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"247\",\"code\":\"6161100420281\",\"name\":\"caprice dry white 750ml\",\"unit\":\"4\",\"cost\":\"498.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420281\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"498.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-dry-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"caprice dry white 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (925, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"244\",\"code\":\"6161100420298\",\"name\":\"CAPRICE DRY RED (wine) 750ML\",\"unit\":\"4\",\"cost\":\"490.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420298\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"490.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-dry-red-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPRICE DRY RED (wine) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (926, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"771\",\"code\":\"6161100420359\",\"name\":\"ROCCAMAR RED WINE\",\"unit\":\"4\",\"cost\":\"371.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420359\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"371.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"roccamar-red-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROCCAMAR RED WINE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (927, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"934\",\"code\":\"6161100420403\",\"name\":\"YATTA APPLE JUICE\",\"unit\":\"4\",\"cost\":\"170.6400\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420403\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"170.6400\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-apple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA APPLE JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (928, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"937\",\"code\":\"6161100420762\",\"name\":\"YATTA RED (wine) 1 LITRE\",\"unit\":\"4\",\"cost\":\"380.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420762\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"380.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-red-wine-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA RED (wine) 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (929, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"939\",\"code\":\"6161100420779\",\"name\":\"YATTA WHITE GRAPE JUICE\",\"unit\":\"4\",\"cost\":\"170.6400\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420779\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"170.6400\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-white-grape-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA WHITE GRAPE JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (930, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"484\",\"code\":\"6161100420786\",\"name\":\"HUNTERS (choice) 250ML\",\"unit\":\"4\",\"cost\":\"241.5500\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420786\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"241.5500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunters-choice-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTERS (choice) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (931, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"569\",\"code\":\"6161100420823\",\"name\":\"KIBAO 250ML\",\"unit\":\"4\",\"cost\":\"177.1300\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100420823\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"177.1300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KIBAO 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (932, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"935\",\"code\":\"6161100421196\",\"name\":\"YATTA JUICE RED GRAPE JUICE\",\"unit\":\"4\",\"cost\":\"170.6400\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421196\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"170.6400\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-juice-red-grape-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA JUICE RED GRAPE JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (933, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"301\",\"code\":\"6161100421219\",\"name\":\"COUNTY (brandy) 750ML\",\"unit\":\"4\",\"cost\":\"466.9900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421219\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"466.9900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"county-brandy-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COUNTY (brandy) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (934, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"300\",\"code\":\"6161100421226\",\"name\":\"COUNTY (brandy) 350ML\",\"unit\":\"4\",\"cost\":\"217.5000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421226\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"217.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"county-brandy-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COUNTY (brandy) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (935, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"299\",\"code\":\"6161100421233\",\"name\":\"COUNTY (brandy) 250ML\",\"unit\":\"4\",\"cost\":\"161.0300\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421233\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"161.0300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"county-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COUNTY (brandy) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (936, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"248\",\"code\":\"6161100421240\",\"name\":\"CAPRICE SWEET RED (wine 750ml)\",\"unit\":\"4\",\"cost\":\"490.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421240\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"490.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-sweet-red-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPRICE SWEET RED (wine 750ml)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (937, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"249\",\"code\":\"6161100421271\",\"name\":\"CAPRICE SWEET RED 1 LITRE\",\"unit\":\"4\",\"cost\":\"563.6100\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"563.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-sweet-red-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPRICE SWEET RED 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (938, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"250\",\"code\":\"6161100421288\",\"name\":\"CAPRICE SWEET WHITE 1 LITRE\",\"unit\":\"4\",\"cost\":\"563.6100\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421288\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"563.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-sweet-white-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPRICE SWEET WHITE 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (939, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"936\",\"code\":\"6161100421318\",\"name\":\"YATTA MANGO JUICE\",\"unit\":\"4\",\"cost\":\"170.6400\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421318\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"170.6400\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-mango-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA MANGO JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (940, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"938\",\"code\":\"6161100421332\",\"name\":\"YATTA TROPICAL JUICE 1L\",\"unit\":\"4\",\"cost\":\"170.6400\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421332\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"170.6400\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"yatta-tropical-juice-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"YATTA TROPICAL JUICE 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (941, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"486\",\"code\":\"6161100421356\",\"name\":\"HUNTERS 750ML\",\"unit\":\"4\",\"cost\":\"668.2800\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"668.2800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunters-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTERS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (942, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"485\",\"code\":\"6161100421363\",\"name\":\"HUNTERS (choice) 350ML\",\"unit\":\"4\",\"cost\":\"362.3200\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"362.3200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hunters-choice-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HUNTERS (choice) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (943, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"261\",\"code\":\"6161100421369\",\"name\":\"CARIBIA GIN 250ML\",\"unit\":\"4\",\"cost\":\"177.1300\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421369\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"177.1300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caribia-gin-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARIBIA GIN 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (944, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"142\",\"code\":\"6161100421400\",\"name\":\"ALTAR WINE 750ml\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421400\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"altar-wine-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALTAR WINE 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (945, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"574\",\"code\":\"6161100421424\",\"name\":\"kibao vodka lime flavour\",\"unit\":\"4\",\"cost\":\"143.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"143.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-vodka-lime-flavour\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kibao vodka lime flavour\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (946, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"572\",\"code\":\"6161100421448\",\"name\":\"kibao vodka apple flavour\",\"unit\":\"4\",\"cost\":\"143.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421448\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"143.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-vodka-apple-flavour\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kibao vodka apple flavour\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (947, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"573\",\"code\":\"6161100421462\",\"name\":\"kibao vodka int flavour\",\"unit\":\"4\",\"cost\":\"143.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421462\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"143.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kibao-vodka-int-flavour\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"kibao vodka int flavour\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (948, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"184\",\"code\":\"6161100421554\",\"name\":\"BEST LONDON DRY GIN 250ml\",\"unit\":\"4\",\"cost\":\"201.2900\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421554\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"201.2900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-london-dry-gin-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST LONDON DRY GIN 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (949, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"185\",\"code\":\"6161100421561\",\"name\":\"BEST LONDON GIN 750ML\",\"unit\":\"4\",\"cost\":\"563.6100\",\"price\":\"680.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"563.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"best-london-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEST LONDON GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (950, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"265\",\"code\":\"6161100421684\",\"name\":\"CASA BUENA SANGRIA SWEET WHITE WINE 1L\",\"unit\":\"4\",\"cost\":\"483.0900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421684\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"483.0900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"casa-buena-sangria-sweet-white-wine-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASA BUENA SANGRIA SWEET WHITE WINE 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (951, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"264\",\"code\":\"6161100421691\",\"name\":\"CASA BUENA SANGRIA SWEEET RED WINE 1L\",\"unit\":\"4\",\"cost\":\"483.0900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421691\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"483.0900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"casa-buena-sangria-sweeet-red-wine-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASA BUENA SANGRIA SWEEET RED WINE 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (952, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"669\",\"code\":\"6161100421714\",\"name\":\"NATURE\'S FRESH( Mango & Apple 1L)\",\"unit\":\"4\",\"cost\":\"150.2000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421714\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"150.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"natures-fresh-mango-apple-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NATURE\'S FRESH( Mango & Apple 1L)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (953, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"668\",\"code\":\"6161100421721\",\"name\":\"NATURE\'S FRESH (Red Grape & Cherry 1L)\",\"unit\":\"4\",\"cost\":\"150.2000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421721\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"150.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"natures-fresh-red-grape-cherry-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NATURE\'S FRESH (Red Grape & Cherry 1L)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (954, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"262\",\"code\":\"6161100421752\",\"name\":\"CARIBIA GIN 750ML\",\"unit\":\"4\",\"cost\":\"483.0900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"483.0900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caribia-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARIBIA GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (955, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"259\",\"code\":\"6161100421769\",\"name\":\"CARIBIA CANE 250ML\",\"unit\":\"4\",\"cost\":\"177.1300\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421769\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"177.1300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caribia-cane-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARIBIA CANE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (956, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"274\",\"code\":\"6161100421820\",\"name\":\"CELLAR CASK WHITE (1LTR)\",\"unit\":\"4\",\"cost\":\"676.3300\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421820\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"676.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellar-cask-white-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CELLAR CASK WHITE (1LTR)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (957, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"273\",\"code\":\"6161100421837\",\"name\":\"CELLAR CASK RED (1LTR)\",\"unit\":\"4\",\"cost\":\"676.3300\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421837\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"676.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cellar-cask-red-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CELLAR CASK RED (1LTR)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (958, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"851\",\"code\":\"6161100421851\",\"name\":\"SUPREME VODKA 250ML\",\"unit\":\"4\",\"cost\":\"144.9300\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421851\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"144.9300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"supreme-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SUPREME VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (959, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"850\",\"code\":\"6161100421868\",\"name\":\"SUPREME  750ML\",\"unit\":\"4\",\"cost\":\"442.8300\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161100421868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"442.8300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"supreme-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SUPREME  750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (960, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"705\",\"code\":\"6161101060356\",\"name\":\"orchid valley mango 1l\",\"unit\":\"4\",\"cost\":\"112.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101060356\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"112.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"orchid-valley-mango-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"orchid valley mango 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (961, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"706\",\"code\":\"6161101060363\",\"name\":\"orchid valley orange 1l\",\"unit\":\"4\",\"cost\":\"84.4800\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101060363\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"84.4800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"orchid-valley-orange-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"orchid valley orange 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (962, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"708\",\"code\":\"6161101060370\",\"name\":\"orchid valley tropical food 1l\",\"unit\":\"4\",\"cost\":\"84.4800\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101060370\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"84.4800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"orchid-valley-tropical-food-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"orchid valley tropical food 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (963, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"704\",\"code\":\"6161101060387\",\"name\":\"orchid valley apple 1l\",\"unit\":\"4\",\"cost\":\"147.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101060387\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"147.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"orchid-valley-apple-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"orchid valley apple 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (964, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"707\",\"code\":\"6161101060394\",\"name\":\"orchid valley passion 1l\",\"unit\":\"4\",\"cost\":\"84.4800\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101060394\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"39\",\"supplier1price\":\"84.4800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"orchid-valley-passion-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"orchid valley passion 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (965, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"947\",\"code\":\"6161101061537\",\"name\":\"ZURI MANGO JUICE\",\"unit\":\"4\",\"cost\":\"39.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101061537\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"39.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zuri-mango-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZURI MANGO JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (966, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"946\",\"code\":\"6161101061544\",\"name\":\"ZURI APPLE JUICE\",\"unit\":\"4\",\"cost\":\"39.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101061544\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"39.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zuri-apple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZURI APPLE JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (967, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"948\",\"code\":\"6161101061575\",\"name\":\"ZURI TROPICAL JUICE\",\"unit\":\"4\",\"cost\":\"39.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101061575\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"51\",\"supplier1price\":\"39.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zuri-tropical-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ZURI TROPICAL JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (968, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"897\",\"code\":\"6161101130424\",\"name\":\"V & A 750ML\",\"unit\":\"4\",\"cost\":\"608.0000\",\"price\":\"780.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101130424\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"608.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"v-a-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"V & A 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (969, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"627\",\"code\":\"6161101560009\",\"name\":\"MEAKINS (vodka) 750ML\",\"unit\":\"4\",\"cost\":\"504.1700\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"504.1700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"meakins-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MEAKINS (vodka) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (970, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"873\",\"code\":\"6161101560108\",\"name\":\"TOP SECRET 750ML\",\"unit\":\"4\",\"cost\":\"591.6700\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"591.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"top-secret-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TOP SECRET 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (971, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"664\",\"code\":\"6161101560207\",\"name\":\"NAPOLEON (crown) 750ML\",\"unit\":\"4\",\"cost\":\"591.6700\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"591.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"napoleon-crown-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAPOLEON (crown) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (972, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"780\",\"code\":\"6161101560283\",\"name\":\"SAFARI CANE 750ML\",\"unit\":\"4\",\"cost\":\"508.3300\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560283\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"508.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-cane-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI CANE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (973, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"549\",\"code\":\"6161101560337\",\"name\":\"KAHAWA LIQUER 750ML\",\"unit\":\"4\",\"cost\":\"666.6700\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560337\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"666.6700\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kahawa-liquer-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KAHAWA LIQUER 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (974, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"548\",\"code\":\"61611015603371\",\"name\":\"KAHAWA GOLD 750ML\",\"unit\":\"4\",\"cost\":\"1091.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"61611015603371\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1091.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kahawa-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KAHAWA GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (975, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"784\",\"code\":\"6161101560368\",\"name\":\"safari whisky 750ml\",\"unit\":\"4\",\"cost\":\"666.6000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560368\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"666.6000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"safari whisky 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (976, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"563\",\"code\":\"6161101560702\",\"name\":\"KENYA KING 750ML\",\"unit\":\"4\",\"cost\":\"504.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560702\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"504.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-king-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA KING 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (977, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"783\",\"code\":\"6161101560764\",\"name\":\"SAFARI WHISKY 250ML\",\"unit\":\"4\",\"cost\":\"225.0000\",\"price\":\"270.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"225.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-whisky-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI WHISKY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (978, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"872\",\"code\":\"6161101560832\",\"name\":\"TOP SECRET 250ML\",\"unit\":\"4\",\"cost\":\"208.3300\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560832\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"208.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"top-secret-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TOP SECRET 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (979, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"626\",\"code\":\"6161101560870\",\"name\":\"MEAKINS (vodka) 250ML\",\"unit\":\"4\",\"cost\":\"172.9200\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560870\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"172.9200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"meakins-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MEAKINS (vodka) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (980, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"666\",\"code\":\"6161101560948\",\"name\":\"NAPOLEON 750ML\",\"unit\":\"4\",\"cost\":\"487.5000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101560948\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"487.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"napoleon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAPOLEON 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (981, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"778\",\"code\":\"6161101561013\",\"name\":\"SAFARI CANE 250ml\",\"unit\":\"4\",\"cost\":\"177.0800\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"177.0800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-cane-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI CANE 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (982, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"779\",\"code\":\"61611015610131\",\"name\":\"SAFARI CANE 500ML\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"61611015610131\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-cane-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI CANE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (983, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"665\",\"code\":\"6161101561020\",\"name\":\"NAPOLEON 250ML\",\"unit\":\"4\",\"cost\":\"160.4200\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"160.4200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"napoleon-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NAPOLEON 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (984, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"562\",\"code\":\"6161101561037\",\"name\":\"KENYA KING 250ML\",\"unit\":\"4\",\"cost\":\"160.4200\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"160.4200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-king-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA KING 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (985, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"667\",\"code\":\"6161101561228\",\"name\":\"napoleon crown brandy 250ml\",\"unit\":\"4\",\"cost\":\"208.3300\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561228\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"208.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"napoleon-crown-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"napoleon crown brandy 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (986, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"920\",\"code\":\"6161101561280\",\"name\":\"WHITE PEARL 250ML\",\"unit\":\"4\",\"cost\":\"154.1600\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561280\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"154.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"white-pearl-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITE PEARL 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (987, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"921\",\"code\":\"6161101561303\",\"name\":\"WHITE PEARL 750ML\",\"unit\":\"4\",\"cost\":\"475.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561303\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"475.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"white-pearl-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITE PEARL 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (988, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"932\",\"code\":\"6161101561310\",\"name\":\"XTRA ORDINARY 250ML\",\"unit\":\"4\",\"cost\":\"1729.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561310\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"1729.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"xtra-ordinary-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"XTRA ORDINARY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (989, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"933\",\"code\":\"6161101561327\",\"name\":\"XTRA ORDINARY 750ML\",\"unit\":\"4\",\"cost\":\"504.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"504.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"xtra-ordinary-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"XTRA ORDINARY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (990, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"624\",\"code\":\"6161101561334\",\"name\":\"MEAKINS (orange) 250ML\",\"unit\":\"4\",\"cost\":\"170.8000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"170.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"meakins-orange-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MEAKINS (orange) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (991, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"625\",\"code\":\"6161101561341\",\"name\":\"MEAKINS (orange) 750ML\",\"unit\":\"4\",\"cost\":\"495.8000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561341\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"495.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"meakins-orange-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MEAKINS (orange) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (992, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"497\",\"code\":\"6161101561372\",\"name\":\"ICEBERG CRAZY COOL 330ML\",\"unit\":\"4\",\"cost\":\"120.8300\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"120.8300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"iceberg-crazy-cool-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ICEBERG CRAZY COOL 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (993, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"498\",\"code\":\"6161101561389\",\"name\":\"ICEBERG GUARANA 330ML\",\"unit\":\"4\",\"cost\":\"120.8300\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"120.8300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"iceberg-guarana-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ICEBERG GUARANA 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (994, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"695\",\"code\":\"6161101561419\",\"name\":\"OAK CASK 700ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561419\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oak-cask-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OAK CASK 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (995, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"576\",\"code\":\"6161101561495\",\"name\":\"KIENYEJI 750ML\",\"unit\":\"4\",\"cost\":\"475.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561495\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"475.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kienyeji-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KIENYEJI 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (996, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"564\",\"code\":\"6161101561501\",\"name\":\"KENYA KING COCONUT 250ML\",\"unit\":\"4\",\"cost\":\"166.6000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561501\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"166.6000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-king-coconut-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA KING COCONUT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (997, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"421\",\"code\":\"6161101561532\",\"name\":\"GENERAL MEAKINS 250ML\",\"unit\":\"4\",\"cost\":\"154.1600\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561532\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"60\",\"supplier1price\":\"154.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"general-meakins-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GENERAL MEAKINS 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (998, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"422\",\"code\":\"6161101561549\",\"name\":\"GENERAL MEAKINS 750ML\",\"unit\":\"4\",\"cost\":\"475.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561549\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"475.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"general-meakins-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GENERAL MEAKINS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (999, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"924\",\"code\":\"6161101561563\",\"name\":\"WHITEPEARL PINK VODKA 250ML\",\"unit\":\"4\",\"cost\":\"154.3000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"154.3000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"whitepearl-pink-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITEPEARL PINK VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1000, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"923\",\"code\":\"6161101561570\",\"name\":\"WHITEPEARL PINK VODKA  750\",\"unit\":\"4\",\"cost\":\"475.0000\",\"price\":\"570.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561570\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"475.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"whitepearl-pink-vodka-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITEPEARL PINK VODKA  750\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1001, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"575\",\"code\":\"6161101561617\",\"name\":\"KIENYEJI 250ML\",\"unit\":\"4\",\"cost\":\"138.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101561617\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"138.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kienyeji-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KIENYEJI 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1002, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"740\",\"code\":\"6161101600026\",\"name\":\"PILSNER 500ML BOTTLE\",\"unit\":\"4\",\"cost\":\"142.2000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600026\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"142.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pilsner-500ml-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PILSNER 500ML BOTTLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1003, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"922\",\"code\":\"6161101600095\",\"name\":\"WHITECAP LAGER BOTTLE 500ML\",\"unit\":\"4\",\"cost\":\"160.2000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600095\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"160.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"whitecap-lager-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITECAP LAGER BOTTLE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1004, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"459\",\"code\":\"6161101600101\",\"name\":\"GUINNESS BOTTLE 500ML\",\"unit\":\"4\",\"cost\":\"169.2000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600101\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"169.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guinness-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUINNESS BOTTLE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1005, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"890\",\"code\":\"6161101600125\",\"name\":\"TUSKER LAGER BOTTLE 500ML\",\"unit\":\"4\",\"cost\":\"151.2000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600125\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"151.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-lager-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER LAGER BOTTLE 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1006, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"810\",\"code\":\"6161101600163\",\"name\":\"SMIRNOFF BLACK BOTTLE\",\"unit\":\"4\",\"cost\":\"123.1200\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600163\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"123.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-black-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF BLACK BOTTLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1007, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"141\",\"code\":\"6161101600187\",\"name\":\"ALLSOPPS 500ML bottle\",\"unit\":\"4\",\"cost\":\"115.8000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600187\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"115.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"allsopps-500ml-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALLSOPPS 500ML bottle\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1008, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"818\",\"code\":\"6161101600927\",\"name\":\"SMIRNOFF VODKA 1L\",\"unit\":\"4\",\"cost\":\"1360.0000\",\"price\":\"1550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600927\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-vodka-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF VODKA 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1009, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"809\",\"code\":\"6161101600934\",\"name\":\"SMIRNOFF (vodka) 750ML\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600934\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF (vodka) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1010, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"808\",\"code\":\"6161101600941\",\"name\":\"SMIRNOFF (vodka) 350ML\",\"unit\":\"4\",\"cost\":\"504.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101600941\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"504.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-vodka-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF (vodka) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1011, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"887\",\"code\":\"6161101601979\",\"name\":\"TUSKER (can) 500ML\",\"unit\":\"4\",\"cost\":\"163.0000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101601979\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"163.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER (can) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1012, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"807\",\"code\":\"6161101602051\",\"name\":\"SMIRNOFF (vodka) 250ML\",\"unit\":\"4\",\"cost\":\"368.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"368.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF (vodka) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1013, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"550\",\"code\":\"6161101602075\",\"name\":\"KANE 250ML\",\"unit\":\"4\",\"cost\":\"168.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602075\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"168.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kane-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KANE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1014, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"232\",\"code\":\"6161101602143\",\"name\":\"BOND 7 (whisky) 250ML\",\"unit\":\"4\",\"cost\":\"368.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"368.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bond-7-whisky-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BOND 7 (whisky) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1015, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"426\",\"code\":\"6161101602167\",\"name\":\"GILBEYS 250ML\",\"unit\":\"4\",\"cost\":\"368.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"368.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GILBEYS 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1016, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"742\",\"code\":\"6161101602174\",\"name\":\"POPOV (vodka) 250ML\",\"unit\":\"4\",\"cost\":\"192.0000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"192.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"popov-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"POPOV (vodka) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1017, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"766\",\"code\":\"6161101602181\",\"name\":\"RICHOT 250ML\",\"unit\":\"4\",\"cost\":\"368.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602181\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"368.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"richot-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RICHOT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1018, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"896\",\"code\":\"6161101602204\",\"name\":\"V & A 250ML\",\"unit\":\"4\",\"cost\":\"236.0000\",\"price\":\"290.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602204\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"236.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"v-a-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"V & A 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1019, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"554\",\"code\":\"6161101602211\",\"name\":\"KENYA CANE (local) 250ML\",\"unit\":\"4\",\"cost\":\"220.0000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602211\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"220.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-local-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE (local) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1020, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"458\",\"code\":\"6161101602372\",\"name\":\"GUINNESS (can) 500ML\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"210.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602372\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guinness-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUINNESS (can) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1021, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"892\",\"code\":\"6161101602389\",\"name\":\"TUSKER LITE BOTTLE 330ML\",\"unit\":\"4\",\"cost\":\"160.2000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602389\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"160.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-lite-bottle-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER LITE BOTTLE 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1022, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"820\",\"code\":\"6161101602426\",\"name\":\"SNAPP BOTTLE\",\"unit\":\"4\",\"cost\":\"123.1200\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"123.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"snapp-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SNAPP BOTTLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1023, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"819\",\"code\":\"6161101602433\",\"name\":\"SNAPP (can) 330ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602433\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"snapp-can-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SNAPP (can) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1024, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"811\",\"code\":\"6161101602563\",\"name\":\"SMIRNOFF BLACK ICE (can) 330ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602563\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-black-ice-can-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF BLACK ICE (can) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1025, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"741\",\"code\":\"6161101602600\",\"name\":\"PILSNER LAGER (can) 500ML\",\"unit\":\"4\",\"cost\":\"147.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602600\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"147.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pilsner-lager-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PILSNER LAGER (can) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1026, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"894\",\"code\":\"6161101602921\",\"name\":\"TUSKER MALT CAN 500ML\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602921\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-malt-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER MALT CAN 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1027, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"891\",\"code\":\"6161101602938\",\"name\":\"TUSKER LITE 500ml can\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101602938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-lite-500ml-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER LITE 500ml can\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1028, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"164\",\"code\":\"6161101603256\",\"name\":\"Balozi 500ml can\",\"unit\":\"4\",\"cost\":\"163.0000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603256\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"163.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"balozi-500ml-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Balozi 500ml can\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1029, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"815\",\"code\":\"6161101603324\",\"name\":\"SMIRNOFF ICE GUARANA\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-ice-guarana\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF ICE GUARANA\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1030, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"604\",\"code\":\"6161101603331\",\"name\":\"LIBERTY 250ML\",\"unit\":\"4\",\"cost\":\"152.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"152.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"liberty-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LIBERTY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1031, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"917\",\"code\":\"6161101603379\",\"name\":\"WHITE CAP LAGER (can) 500ML\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"210.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603379\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"white-cap-lager-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHITE CAP LAGER (can) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1032, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"281\",\"code\":\"6161101603515\",\"name\":\"CHROME (lemon) 250ML\",\"unit\":\"4\",\"cost\":\"170.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"170.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chrome-lemon-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHROME (lemon) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1033, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"284\",\"code\":\"6161101603522\",\"name\":\"CHROME VODKA 750ML\",\"unit\":\"4\",\"cost\":\"480.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603522\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"480.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chrome-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHROME VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1034, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"712\",\"code\":\"6161101603607\",\"name\":\"origin bitter 250ML\",\"unit\":\"4\",\"cost\":\"175.0000\",\"price\":\"210.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603607\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"175.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"origin-bitter-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"origin bitter 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1035, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"912\",\"code\":\"6161101603881\",\"name\":\"vodka electric guarana\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603881\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vodka-electric-guarana\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"vodka electric guarana\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1036, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"529\",\"code\":\"6161101603898\",\"name\":\"JEBEL 200ML\",\"unit\":\"4\",\"cost\":\"125.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"125.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jebel-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JEBEL 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1037, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"553\",\"code\":\"6161101603942\",\"name\":\"KENYA CANE (coconut) 750ML\",\"unit\":\"4\",\"cost\":\"584.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603942\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"584.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-coconut-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE (coconut) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1038, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"559\",\"code\":\"6161101603959\",\"name\":\"KENYA CANE COCONUT 250ML\",\"unit\":\"4\",\"cost\":\"220.0000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101603959\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"220.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-coconut-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE COCONUT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1039, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"285\",\"code\":\"6161101604031\",\"name\":\"CHROME(local) 250ML\",\"unit\":\"4\",\"cost\":\"170.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604031\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"170.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chromelocal-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHROME(local) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1040, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"530\",\"code\":\"6161101604130\",\"name\":\"jebel brandy 250ml\",\"unit\":\"4\",\"cost\":\"125.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604130\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"125.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jebel-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jebel brandy 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1041, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"531\",\"code\":\"6161101604154\",\"name\":\"JEBEL SPICE 200ML\",\"unit\":\"4\",\"cost\":\"125.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604154\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"125.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jebel-spice-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JEBEL SPICE 200ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1042, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"814\",\"code\":\"6161101604185\",\"name\":\"SMIRNOFF GUARANA 750ML\",\"unit\":\"4\",\"cost\":\"960.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604185\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"960.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"smirnoff-guarana-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SMIRNOFF GUARANA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1043, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"340\",\"code\":\"6161101604192\",\"name\":\"electric guarana\",\"unit\":\"4\",\"cost\":\"122.0000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604192\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"122.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"electric-guarana\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"electric guarana\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1044, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"605\",\"code\":\"6161101604222\",\"name\":\"liberty gin 200ml\",\"unit\":\"4\",\"cost\":\"116.7000\",\"price\":\"135.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604222\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"116.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"liberty-gin-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"liberty gin 200ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1045, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"888\",\"code\":\"6161101604246\",\"name\":\"TUSKER CIDER BOTTLE 500ml\",\"unit\":\"4\",\"cost\":\"160.2000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604246\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"160.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-cider-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TUSKER CIDER BOTTLE 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1046, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"889\",\"code\":\"6161101604406\",\"name\":\"tusker cider can\",\"unit\":\"4\",\"cost\":\"171.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604406\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"171.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tusker-cider-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"tusker cider can\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1047, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"252\",\"code\":\"6161101604543\",\"name\":\"CAPTAIN MORGAN GOLD 750ML\",\"unit\":\"4\",\"cost\":\"760.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604543\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"760.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"captain-morgan-gold-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPTAIN MORGAN GOLD 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1048, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"251\",\"code\":\"6161101604550\",\"name\":\"CAPTAIN MORGAN 250ML\",\"unit\":\"4\",\"cost\":\"264.0000\",\"price\":\"340.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"264.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"captain-morgan-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPTAIN MORGAN 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1049, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"455\",\"code\":\"6161101604697\",\"name\":\"GUARANA CAN 500ML\",\"unit\":\"4\",\"cost\":\"160.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604697\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"160.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guarana-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUARANA CAN 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1050, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"557\",\"code\":\"6161101604840\",\"name\":\"KENYA CANE CITRUS 250ML\",\"unit\":\"4\",\"cost\":\"220.0000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604840\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"220.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-citrus-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE CITRUS 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1051, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"558\",\"code\":\"6161101604857\",\"name\":\"KENYA CANE CITRUS 750ML\",\"unit\":\"4\",\"cost\":\"584.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"584.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-citrus-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE CITRUS 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1052, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"884\",\"code\":\"6161101604864\",\"name\":\"TRIPLE ACE VODKA 250ML\",\"unit\":\"4\",\"cost\":\"162.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604864\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"162.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"triple-ace-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TRIPLE ACE VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1053, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"551\",\"code\":\"6161101604871\",\"name\":\"KANE EXTRA 750ML\",\"unit\":\"4\",\"cost\":\"472.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604871\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"472.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kane-extra-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KANE EXTRA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1054, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"885\",\"code\":\"6161101604888\",\"name\":\"TRIPPLE ACE VODKA 750ML\",\"unit\":\"4\",\"cost\":\"440.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"440.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tripple-ace-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TRIPPLE ACE VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1055, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"655\",\"code\":\"6161101604925\",\"name\":\"MR DOWELLS 250ml\",\"unit\":\"4\",\"cost\":\"184.0000\",\"price\":\"210.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604925\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"184.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mr-dowells-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MR DOWELLS 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1056, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"654\",\"code\":\"6161101604932\",\"name\":\"MR DOWELL\'S 750ML\",\"unit\":\"4\",\"cost\":\"586.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604932\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"586.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"mr-dowells-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MR DOWELL\'S 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1057, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"560\",\"code\":\"6161101604987\",\"name\":\"KENYA CANE PINEAPPLE 250ML\",\"unit\":\"4\",\"cost\":\"220.0000\",\"price\":\"280.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604987\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"220.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-pineapple-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE PINEAPPLE 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1058, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"555\",\"code\":\"6161101604994\",\"name\":\"KENYA CANE (PINEAPPLE) 750ML\",\"unit\":\"4\",\"cost\":\"580.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"24\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101604994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"580.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kenya-cane-pineapple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KENYA CANE (PINEAPPLE) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1059, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"457\",\"code\":\"6161101605144\",\"name\":\"GUINESS SMOTH BOTTLE 500ml\",\"unit\":\"4\",\"cost\":\"151.2000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605144\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"151.2000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guiness-smoth-bottle-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUINESS SMOTH BOTTLE 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1060, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"460\",\"code\":\"6161101605199\",\"name\":\"GUINNESS SMOOTH CAN\",\"unit\":\"4\",\"cost\":\"163.0000\",\"price\":\"190.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"163.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"guinness-smooth-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GUINNESS SMOOTH CAN\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1061, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"800\",\"code\":\"6161101605328\",\"name\":\"SIKERA APPLE CIDER 330ML\",\"unit\":\"4\",\"cost\":\"145.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605328\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"145.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sikera-apple-cider-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SIKERA APPLE CIDER 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1062, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"483\",\"code\":\"6161101605342\",\"name\":\"HOP HOUSE LAGER 500ML\",\"unit\":\"4\",\"cost\":\"206.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605342\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"206.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hop-house-lager-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOP HOUSE LAGER 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1063, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"282\",\"code\":\"6161101605458\",\"name\":\"CHROME GIN 250ML\",\"unit\":\"4\",\"cost\":\"170.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605458\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"170.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chrome-gin-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHROME GIN 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1064, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"283\",\"code\":\"6161101605465\",\"name\":\"CHROME GIN 750ML\",\"unit\":\"4\",\"cost\":\"480.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101605465\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"480.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chrome-gin-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHROME GIN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1065, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"430\",\"code\":\"6161101606547\",\"name\":\"GILBEYS PINK 250ML\",\"unit\":\"4\",\"cost\":\"368.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101606547\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"368.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-pink-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GILBEYS PINK 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1066, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"431\",\"code\":\"6161101606548\",\"name\":\"GILBEYS PINK 350ML\",\"unit\":\"4\",\"cost\":\"512.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101606548\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"512.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-pink-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GILBEYS PINK 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1067, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"429\",\"code\":\"6161101606561\",\"name\":\"GILBEYS 750ML FLV(mixed berry)\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161101606561\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"20\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gilbeys-750ml-flvmixed-berry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GILBEYS 750ML FLV(mixed berry)\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1068, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"172\",\"code\":\"6161102050868\",\"name\":\"BAZUU 500ML\",\"unit\":\"4\",\"cost\":\"40.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161102050868\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"49\",\"supplier1price\":\"40.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bazuu-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAZUU 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1069, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"171\",\"code\":\"6161102050998\",\"name\":\"BAZUU 265ML\",\"unit\":\"4\",\"cost\":\"25.0000\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161102050998\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"49\",\"supplier1price\":\"25.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bazuu-265ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAZUU 265ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1070, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"341\",\"code\":\"6161102052701\",\"name\":\"ENERGY 265 ML\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161102052701\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"energy-265-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ENERGY 265 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1071, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"859\",\"code\":\"6161102080063\",\"name\":\"TABLUS\",\"unit\":\"4\",\"cost\":\"4.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161102080063\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"4.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tablus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TABLUS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1072, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"586\",\"code\":\"6161103650005\",\"name\":\"KONYAGI 500ML\",\"unit\":\"4\",\"cost\":\"360.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161103650005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"konyagi-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KONYAGI 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1073, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"587\",\"code\":\"6161103650135\",\"name\":\"KONYAGI 750ML\",\"unit\":\"4\",\"cost\":\"555.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161103650135\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"555.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"konyagi-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KONYAGI 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1074, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"585\",\"code\":\"6161103650166\",\"name\":\"KONYAGI 250ML\",\"unit\":\"4\",\"cost\":\"190.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161103650166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"190.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"konyagi-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KONYAGI 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1075, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"600\",\"code\":\"6161109920102\",\"name\":\"legend BLACK LABEL 250ml\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-black-label-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"legend BLACK LABEL 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1076, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"602\",\"code\":\"6161109920119\",\"name\":\"legend BLACK LABEL350ml\",\"unit\":\"4\",\"cost\":\"315.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920119\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"315.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-black-label350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"legend BLACK LABEL350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1077, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"601\",\"code\":\"6161109920126\",\"name\":\"legend black label 750ml\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-black-label-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"legend black label 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1078, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"221\",\"code\":\"6161109920133\",\"name\":\"bluemoon crisp apple 250ml\",\"unit\":\"4\",\"cost\":\"129.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920133\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"129.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-crisp-apple-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon crisp apple 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1079, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"225\",\"code\":\"6161109920140\",\"name\":\"bluemoon hot ginger250ml\",\"unit\":\"4\",\"cost\":\"129.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920140\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"129.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-hot-ginger250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon hot ginger250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1080, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"226\",\"code\":\"6161109920157\",\"name\":\"bluemoon juicy mango 250ml\",\"unit\":\"4\",\"cost\":\"129.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920157\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"129.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-juicy-mango-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon juicy mango 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1081, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"222\",\"code\":\"6161109920164\",\"name\":\"bluemoon crisp apple 350ml\",\"unit\":\"4\",\"cost\":\"182.5000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920164\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"182.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-crisp-apple-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon crisp apple 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1082, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"215\",\"code\":\"6161109920171\",\"name\":\"blue moon hot ginger 350ml\",\"unit\":\"4\",\"cost\":\"182.5000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920171\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"182.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-moon-hot-ginger-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"blue moon hot ginger 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1083, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"227\",\"code\":\"6161109920188\",\"name\":\"bluemoon juicy mango 350ml\",\"unit\":\"4\",\"cost\":\"182.5000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920188\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"182.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-juicy-mango-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon juicy mango 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1084, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"223\",\"code\":\"6161109920195\",\"name\":\"bluemoon crisp apple 750ml\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920195\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-crisp-apple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon crisp apple 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1085, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"224\",\"code\":\"6161109920201\",\"name\":\"bluemoon hot ginger 750ml\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920201\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-hot-ginger-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon hot ginger 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1086, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"228\",\"code\":\"6161109920218\",\"name\":\"bluemoon juicy mango 750ml\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920218\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-juicy-mango-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"bluemoon juicy mango 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1087, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"432\",\"code\":\"6161109920232\",\"name\":\"glen rock 250ml\",\"unit\":\"4\",\"cost\":\"186.0000\",\"price\":\"230.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920232\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"186.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glen-rock-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"glen rock 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1088, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"219\",\"code\":\"6161109920300\",\"name\":\"BLUEMOON COCONUT 250ML\",\"unit\":\"4\",\"cost\":\"128.5000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"128.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-coconut-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUEMOON COCONUT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1089, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"220\",\"code\":\"6161109920324\",\"name\":\"BLUEMOON COCONUT 750ML\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161109920324\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-coconut-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUEMOON COCONUT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1090, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"878\",\"code\":\"6161111480014\",\"name\":\"TREE TOP ORANGE\",\"unit\":\"4\",\"cost\":\"146.5000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480014\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"146.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP ORANGE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1091, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"879\",\"code\":\"6161111480069\",\"name\":\"TREE TOP ORANGE 500ml\",\"unit\":\"4\",\"cost\":\"45.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480069\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"45.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-orange-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP ORANGE 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1092, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"877\",\"code\":\"6161111480137\",\"name\":\"TREE TOP MANGO JUICE\",\"unit\":\"4\",\"cost\":\"146.2500\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"146.2500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-mango-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP MANGO JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1093, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"876\",\"code\":\"6161111480182\",\"name\":\"TREE TOP MANGO 500ML\",\"unit\":\"4\",\"cost\":\"45.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"45.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-mango-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP MANGO 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1094, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"881\",\"code\":\"6161111480199\",\"name\":\"TREE TOP TROPICAL JUICE\",\"unit\":\"4\",\"cost\":\"146.2500\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480199\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"146.2500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-tropical-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP TROPICAL JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1095, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"880\",\"code\":\"6161111480243\",\"name\":\"TREE TOP TROPICAL 500ML\",\"unit\":\"4\",\"cost\":\"45.0000\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480243\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"45.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-tropical-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP TROPICAL 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1096, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"875\",\"code\":\"6161111480250\",\"name\":\"TREE TOP APPLE JUICE\",\"unit\":\"4\",\"cost\":\"146.2500\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161111480250\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"85\",\"supplier1price\":\"146.2500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tree-top-apple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TREE TOP APPLE JUICE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1097, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"237\",\"code\":\"6161117770126\",\"name\":\"BUBBLE UP LEMON LIME 350ML\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161117770126\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bubble-up-lemon-lime-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BUBBLE UP LEMON LIME 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1098, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"236\",\"code\":\"6161117770300\",\"name\":\"BUBBLE UP BITTER LEMON 350ML\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161117770300\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bubble-up-bitter-lemon-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BUBBLE UP BITTER LEMON 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1099, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"238\",\"code\":\"6161117770416\",\"name\":\"BUBBLE UP TONIC WATER 350ML\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6161117770416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bubble-up-tonic-water-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BUBBLE UP TONIC WATER 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1100, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"260\",\"code\":\"6163100421752\",\"name\":\"CARIBIA CANE 750ML\",\"unit\":\"4\",\"cost\":\"483.0900\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6163100421752\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"483.0900\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caribia-cane-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARIBIA CANE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1101, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"721\",\"code\":\"6164000203008\",\"name\":\"PACIFIC 500ML\",\"unit\":\"4\",\"cost\":\"12.5000\",\"price\":\"20.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000203008\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"12.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pacific-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PACIFIC 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1102, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"719\",\"code\":\"6164000203015\",\"name\":\"PACIFIC 1LITRE\",\"unit\":\"4\",\"cost\":\"25.0000\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000203015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"25.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pacific-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PACIFIC 1LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1103, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"720\",\"code\":\"6164000203039\",\"name\":\"PACIFIC 300ML\",\"unit\":\"4\",\"cost\":\"6.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000203039\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"6.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"pacific-300ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PACIFIC 300ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1104, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"135\",\"code\":\"6164000456084\",\"name\":\"afrigold gin glass\",\"unit\":\"4\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456084\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"90.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"afrigold-gin-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"afrigold gin glass\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1105, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"213\",\"code\":\"6164000456244\",\"name\":\"BLUE MOON 350ML\",\"unit\":\"4\",\"cost\":\"182.5000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456244\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"182.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-moon-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE MOON 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1106, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"214\",\"code\":\"6164000456398\",\"name\":\"BLUE MOON 750ML\",\"unit\":\"4\",\"cost\":\"365.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456398\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"365.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-moon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE MOON 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1107, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"461\",\"code\":\"6164000456404\",\"name\":\"GYPSY KING 250ML\",\"unit\":\"4\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456404\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"90.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gypsy-king-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GYPSY KING 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1108, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"218\",\"code\":\"6164000456411\",\"name\":\"BLUEMOON 250ML\",\"unit\":\"4\",\"cost\":\"129.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456411\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"129.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bluemoon-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUEMOON 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1109, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"598\",\"code\":\"6164000456534\",\"name\":\"LEGEND (brandy) 350ML\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-brandy-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LEGEND (brandy) 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1110, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"599\",\"code\":\"6164000456541\",\"name\":\"LEGEND (brandy) 750ML\",\"unit\":\"4\",\"cost\":\"360.0000\",\"price\":\"420.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"360.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-brandy-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LEGEND (brandy) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1111, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"412\",\"code\":\"6164000456640\",\"name\":\"furaha brandy 750ml\",\"unit\":\"4\",\"cost\":\"310.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456640\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"310.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"furaha-brandy-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"furaha brandy 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1112, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"414\",\"code\":\"6164000456664\",\"name\":\"FURAHA VODKA 750ML\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"380.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456664\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"furaha-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FURAHA VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1113, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"597\",\"code\":\"6164000456923\",\"name\":\"LEGEND (brandy) 250ML\",\"unit\":\"4\",\"cost\":\"127.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"127.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"legend-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LEGEND (brandy) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1114, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"411\",\"code\":\"6164000456930\",\"name\":\"FURAHA (gin) 250ML\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456930\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"furaha-gin-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FURAHA (gin) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1115, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"410\",\"code\":\"6164000456961\",\"name\":\"FURAHA (brandy) 250ML\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164000456961\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"22\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"furaha-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FURAHA (brandy) 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1116, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"777\",\"code\":\"6164001199010\",\"name\":\"SAFARI 1LITRE\",\"unit\":\"4\",\"cost\":\"35.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164001199010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"35.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI 1LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1117, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"776\",\"code\":\"6164001199027\",\"name\":\"SAFARI 1.5LITRE\",\"unit\":\"4\",\"cost\":\"50.0000\",\"price\":\"70.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164001199027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"50.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-15litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI 1.5LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1118, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"782\",\"code\":\"6164001199034\",\"name\":\"SAFARI WATER 500ML\",\"unit\":\"4\",\"cost\":\"17.7000\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164001199034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"17.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-water-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SAFARI WATER 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1119, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"781\",\"code\":\"6164001199102\",\"name\":\"safari clubsoda 330ml\",\"unit\":\"4\",\"cost\":\"30.0000\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164001199102\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"30.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"safari-clubsoda-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"safari clubsoda 330ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1120, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"603\",\"code\":\"6164001199331\",\"name\":\"LEMONADE LIME\",\"unit\":\"4\",\"cost\":\"33.3300\",\"price\":\"55.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164001199331\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"33.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"lemonade-lime\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LEMONADE LIME\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1121, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"209\",\"code\":\"6164002438261\",\"name\":\"BLUE ICE COCONUT 250ML\",\"unit\":\"4\",\"cost\":\"135.0000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164002438261\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"135.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-ice-coconut-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE ICE COCONUT 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1122, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"211\",\"code\":\"6164002438262\",\"name\":\"BLUE ICE VODKA 250ML\",\"unit\":\"4\",\"cost\":\"135.0000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164002438262\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"135.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-ice-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE ICE VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1123, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"210\",\"code\":\"61640024382621\",\"name\":\"BLUE ICE COCONUT 750ML\",\"unit\":\"4\",\"cost\":\"367.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"61640024382621\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"367.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-ice-coconut-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE ICE COCONUT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1124, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"212\",\"code\":\"6164002438293\",\"name\":\"BLUE ICE VODKA 750ML\",\"unit\":\"4\",\"cost\":\"367.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164002438293\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"367.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-ice-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE ICE VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1125, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"423\",\"code\":\"6164002438408\",\"name\":\"GENIUS 250 ML\",\"unit\":\"4\",\"cost\":\"117.5000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164002438408\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"117.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"genius-250-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GENIUS 250 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1126, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"652\",\"code\":\"6164003120012\",\"name\":\"moonwalker 250ml\",\"unit\":\"4\",\"cost\":\"105.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003120012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"105.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"moonwalker-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"moonwalker 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1127, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"772\",\"code\":\"6164003120074\",\"name\":\"ROCK STAR 250ML\",\"unit\":\"4\",\"cost\":\"95.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003120074\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"95.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"rock-star-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROCK STAR 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1128, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"725\",\"code\":\"6164003190015\",\"name\":\"PATRIOT GIN 250ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003190015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"112\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"patriot-gin-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PATRIOT GIN 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1129, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"726\",\"code\":\"6164003190077\",\"name\":\"PATRIOT VODKA 250ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003190077\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"112\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"patriot-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PATRIOT VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1130, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"343\",\"code\":\"6164003190107\",\"name\":\"ETHANOL SPIRIT 500ML\",\"unit\":\"4\",\"cost\":\"80.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"29\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003190107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"112\",\"supplier1price\":\"80.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ethanol-spirit-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ETHANOL SPIRIT 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1131, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"853\",\"code\":\"6164003190145\",\"name\":\"SURGICAL SPIRIT 5LTS\",\"unit\":\"4\",\"cost\":\"450.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"29\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003190145\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"112\",\"supplier1price\":\"450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"surgical-spirit-5lts\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SURGICAL SPIRIT 5LTS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1132, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"852\",\"code\":\"6164003190169\",\"name\":\"SURGICAL SPIRIT 500ML\",\"unit\":\"4\",\"cost\":\"80.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"29\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003190169\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"112\",\"supplier1price\":\"80.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"surgical-spirit-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SURGICAL SPIRIT 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1133, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"368\",\"code\":\"6164003344166\",\"name\":\"FERRARI (can) 330ML\",\"unit\":\"4\",\"cost\":\"90.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003344166\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"66\",\"supplier1price\":\"90.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ferrari-can-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FERRARI (can) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1134, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"650\",\"code\":\"6164003344173\",\"name\":\"MOMENTUM ICE (can) 330ML\",\"unit\":\"4\",\"cost\":\"90.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003344173\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"66\",\"supplier1price\":\"90.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"momentum-ice-can-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MOMENTUM ICE (can) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1135, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"367\",\"code\":\"6164003344234\",\"name\":\"FERARRI ICE (glass) 330ML\",\"unit\":\"4\",\"cost\":\"95.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164003344234\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"66\",\"supplier1price\":\"95.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ferarri-ice-glass-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FERARRI ICE (glass) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1136, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"136\",\"code\":\"6164004510492\",\"name\":\"ALIVE MANGO 500ML\",\"unit\":\"4\",\"cost\":\"43.3300\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004510492\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"97\",\"supplier1price\":\"43.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"alive-mango-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALIVE MANGO 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1137, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"137\",\"code\":\"6164004510553\",\"name\":\"ALIVE MIXED BERRY PUNCH\",\"unit\":\"4\",\"cost\":\"43.3300\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004510553\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"97\",\"supplier1price\":\"43.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"alive-mixed-berry-punch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALIVE MIXED BERRY PUNCH\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1138, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"520\",\"code\":\"6164004654011\",\"name\":\"JAMBO 250\",\"unit\":\"4\",\"cost\":\"127.5000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654011\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"127.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jambo-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JAMBO 250\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1139, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"307\",\"code\":\"6164004654042\",\"name\":\"DALLAS 250ML\",\"unit\":\"4\",\"cost\":\"127.5000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654042\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"127.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dallas-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"DALLAS 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1140, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"308\",\"code\":\"6164004654066\",\"name\":\"Dallas 750ml\",\"unit\":\"4\",\"cost\":\"385.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654066\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"385.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dallas-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Dallas 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1141, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"854\",\"code\":\"6164004654097\",\"name\":\"SWEET BERRY  250Ml\",\"unit\":\"4\",\"cost\":\"132.5000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654097\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"132.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sweet-berry-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SWEET BERRY  250Ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1142, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"857\",\"code\":\"6164004654158\",\"name\":\"SWEETBERRY vdk 750ml\",\"unit\":\"4\",\"cost\":\"385.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654158\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"385.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sweetberry-vdk-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SWEETBERRY vdk 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1143, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"150\",\"code\":\"6164004654202\",\"name\":\"AVALON 250ML\",\"unit\":\"4\",\"cost\":\"145.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6164004654202\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"145.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"avalon-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AVALON 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1144, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"755\",\"code\":\"6201100060015\",\"name\":\"REDDS CAN (original) 330ML\",\"unit\":\"4\",\"cost\":\"106.2500\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6201100060015\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"24\",\"supplier1price\":\"106.2500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"redds-can-original-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"REDDS CAN (original) 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1145, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"756\",\"code\":\"6201100061265\",\"name\":\"REDDS CAN 500ML\",\"unit\":\"4\",\"cost\":\"133.0000\",\"price\":\"160.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6201100061265\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"38\",\"supplier1price\":\"133.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"redds-can-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"REDDS CAN 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1146, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"269\",\"code\":\"6201100061500\",\"name\":\"CASTLE LITE 440ML\",\"unit\":\"4\",\"cost\":\"125.0000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6201100061500\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"38\",\"supplier1price\":\"125.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"castle-lite-440ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CASTLE LITE 440ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1147, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"911\",\"code\":\"6201100070182\",\"name\":\"VLADIMIR 750ML\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6201100070182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vladimir-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VLADIMIR 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1148, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"940\",\"code\":\"6201100070595\",\"name\":\"zanzi cream\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6201100070595\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"zanzi-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"zanzi cream\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1149, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"758\",\"code\":\"6203005571498\",\"name\":\"REGENCY 750ML\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6203005571498\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"regency-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"REGENCY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1150, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"588\",\"code\":\"6203005571917\",\"name\":\"KONYAGI PASSION 250ML\",\"unit\":\"4\",\"cost\":\"120.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6203005571917\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"120.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"konyagi-passion-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KONYAGI PASSION 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1151, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"173\",\"code\":\"6291108010938\",\"name\":\"BEAST MODE 250ml\",\"unit\":\"4\",\"cost\":\"75.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"6291108010938\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"75.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"beast-mode-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BEAST MODE 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1152, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"860\",\"code\":\"663194000395\",\"name\":\"Tall Horse Cabernet Sauvignon 750ML\",\"unit\":\"4\",\"cost\":\"833.0000\",\"price\":\"850.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"663194000395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"833.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tall-horse-cabernet-sauvignon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Tall Horse Cabernet Sauvignon 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1153, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"478\",\"code\":\"710535444209\",\"name\":\"HOLA COLA\",\"unit\":\"4\",\"cost\":\"27.5000\",\"price\":\"35.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"710535444209\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"96\",\"supplier1price\":\"27.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hola-cola\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOLA COLA\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1154, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"481\",\"code\":\"710535444230\",\"name\":\"HOLA ORANGE\",\"unit\":\"4\",\"cost\":\"27.5000\",\"price\":\"35.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"710535444230\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"96\",\"supplier1price\":\"27.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hola-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOLA ORANGE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1155, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"480\",\"code\":\"710535444292\",\"name\":\"HOLA MOJITO\",\"unit\":\"4\",\"cost\":\"27.5000\",\"price\":\"35.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"710535444292\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"96\",\"supplier1price\":\"27.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hola-mojito\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOLA MOJITO\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1156, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"482\",\"code\":\"710535444322\",\"name\":\"HOLA ROSE\",\"unit\":\"4\",\"cost\":\"27.5000\",\"price\":\"35.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"710535444322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"96\",\"supplier1price\":\"27.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hola-rose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOLA ROSE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1157, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"479\",\"code\":\"710535444346\",\"name\":\"HOLA ENERGY DRINK\",\"unit\":\"4\",\"cost\":\"27.5000\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"710535444346\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"96\",\"supplier1price\":\"27.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"hola-energy-drink\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HOLA ENERGY DRINK\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1158, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"826\",\"code\":\"7174000328051\",\"name\":\"SPARKLER VODKA 250ML\",\"unit\":\"4\",\"cost\":\"118.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000328051\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"98\",\"supplier1price\":\"118.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sparkler-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SPARKLER VODKA 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1159, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"279\",\"code\":\"7174000328099\",\"name\":\"CHIVALRY BRANDY 250ML\",\"unit\":\"4\",\"cost\":\"126.0000\",\"price\":\"140.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000328099\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"98\",\"supplier1price\":\"126.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chivalry-brandy-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHIVALRY BRANDY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1160, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"216\",\"code\":\"7174000328112\",\"name\":\"Blue vodka 250ml\",\"unit\":\"4\",\"cost\":\"121.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000328112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"98\",\"supplier1price\":\"121.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-vodka-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Blue vodka 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1161, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"913\",\"code\":\"7174000401020\",\"name\":\"WARAGI 750ml\",\"unit\":\"4\",\"cost\":\"450.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000401020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"110\",\"supplier1price\":\"450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"waragi-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WARAGI 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1162, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"474\",\"code\":\"7174000401167\",\"name\":\"HERDSMAN 500ml\",\"unit\":\"4\",\"cost\":\"350.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000401167\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"110\",\"supplier1price\":\"350.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"herdsman-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HERDSMAN 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1163, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"473\",\"code\":\"7174000401174\",\"name\":\"HERDSMAN 250ml\",\"unit\":\"4\",\"cost\":\"250.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174000401174\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"110\",\"supplier1price\":\"250.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"herdsman-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HERDSMAN 250ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1164, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"217\",\"code\":\"7174001108034\",\"name\":\"BLUE WAVES\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174001108034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-waves\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE WAVES\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1165, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"521\",\"code\":\"7174001108072\",\"name\":\"JAMBO 750ML\",\"unit\":\"4\",\"cost\":\"385.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7174001108072\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"95\",\"supplier1price\":\"385.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jambo-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JAMBO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1166, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"130\",\"code\":\"7312040017010\",\"name\":\"ABSOLUT VODKA 750ML\",\"unit\":\"4\",\"cost\":\"1350.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7312040017010\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1350.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"absolut-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ABSOLUT VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1167, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"131\",\"code\":\"7312040017034\",\"name\":\"ABSOLUTE BLUE VODKA LTR\",\"unit\":\"4\",\"cost\":\"1795.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7312040017034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"105\",\"supplier1price\":\"1795.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"absolute-blue-vodka-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ABSOLUTE BLUE VODKA LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1168, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"310\",\"code\":\"7449000098764\",\"name\":\"Dasani 1L\",\"unit\":\"4\",\"cost\":\"48.3300\",\"price\":\"60.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7449000098764\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"48.3300\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dasani-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Dasani 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1169, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"241\",\"code\":\"7501012916127\",\"name\":\"CAMINO 750ML\",\"unit\":\"4\",\"cost\":\"1150.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7501012916127\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1150.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"camino-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAMINO 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1170, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"540\",\"code\":\"7501035010109\",\"name\":\"JOSE CUERVO GOLD SPECICIAL\",\"unit\":\"4\",\"cost\":\"1888.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"21\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7501035010109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1888.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jose-cuervo-gold-specicial\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOSE CUERVO GOLD SPECICIAL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1171, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"541\",\"code\":\"7501035042308\",\"name\":\"JOSE CUERVO SPECIAL\",\"unit\":\"4\",\"cost\":\"1888.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7501035042308\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1888.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jose-cuervo-special\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOSE CUERVO SPECIAL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1172, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"542\",\"code\":\"7501035042322\",\"name\":\"JOSE CUERVO SPECIAL\",\"unit\":\"4\",\"cost\":\"1888.0000\",\"price\":\"2200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7501035042322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1888.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jose-cuervo-special\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JOSE CUERVO SPECIAL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1173, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"152\",\"code\":\"7610113007518\",\"name\":\"BACARDI  SPICED 750ML\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7610113007518\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bacardi-spiced-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BACARDI  SPICED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1174, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"927\",\"code\":\"7640171032436\",\"name\":\"WILLIAM LAWSON\'S CAN\",\"unit\":\"4\",\"cost\":\"174.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7640171032436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"174.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"william-lawsons-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WILLIAM LAWSON\'S CAN\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1175, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"231\",\"code\":\"7640175740030\",\"name\":\"BOMBAY SAPHIRE L\",\"unit\":\"4\",\"cost\":\"2400.0000\",\"price\":\"2600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7640175740030\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"42\",\"supplier1price\":\"2400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bombay-saphire-l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BOMBAY SAPHIRE L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1176, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"866\",\"code\":\"7791540070112\",\"name\":\"termidor\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7791540070112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"termidor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"termidor\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1177, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"868\",\"code\":\"7794450091598\",\"name\":\"TILIA MALBEC 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7794450091598\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tilia-malbec-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TILIA MALBEC 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1178, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"418\",\"code\":\"7804300010638\",\"name\":\"gato negro sauvington carbernet 750ml\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804300010638\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gato-negro-sauvington-carbernet-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"gato negro sauvington carbernet 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1179, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"417\",\"code\":\"7804300010645\",\"name\":\"gato negro sauvington blanc 750ml\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804300010645\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gato-negro-sauvington-blanc-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"gato negro sauvington blanc 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1180, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"419\",\"code\":\"7804300120603\",\"name\":\"GatoNegro Merlot 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804300120603\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gatonegro-merlot-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GatoNegro Merlot 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1181, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"416\",\"code\":\"7804300122515\",\"name\":\"GATO NEGRO 1.5 LITRE\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804300122515\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"gato-negro-15-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GATO NEGRO 1.5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1182, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"403\",\"code\":\"7804320386997\",\"name\":\"FRONTERA LATE HARVEST  WHITE 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320386997\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-late-harvest-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA LATE HARVEST  WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1183, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"402\",\"code\":\"7804320508009\",\"name\":\"FRONTERA CABERNET RED SAUVIGNON 1.5L\",\"unit\":\"4\",\"cost\":\"1193.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320508009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1193.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-cabernet-red-sauvignon-15l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA CABERNET RED SAUVIGNON 1.5L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1184, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"408\",\"code\":\"7804320509006\",\"name\":\"FRONTERA WHITE 1.5L SAUVIGNON BLANC\",\"unit\":\"4\",\"cost\":\"1400.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320509006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-white-15l-sauvignon-blanc\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA WHITE 1.5L SAUVIGNON BLANC\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1185, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"406\",\"code\":\"7804320556000\",\"name\":\"FRONTERA SAUVIGNON BLANC 750\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320556000\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-sauvignon-blanc-750\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA SAUVIGNON BLANC 750\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1186, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"405\",\"code\":\"7804320559001\",\"name\":\"FRONTERA RED CABERNET SAUVIGNON 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320559001\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-red-cabernet-sauvignon-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA RED CABERNET SAUVIGNON 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1187, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"407\",\"code\":\"7804320626994\",\"name\":\"FRONTERA SWEER RED 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320626994\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-sweer-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA SWEER RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1188, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"404\",\"code\":\"7804320706009\",\"name\":\"FRONTERA MERLOT 750ML\",\"unit\":\"4\",\"cost\":\"1000.0000\",\"price\":\"1150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"7804320706009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"100\",\"supplier1price\":\"1000.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"frontera-merlot-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FRONTERA MERLOT 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1189, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"805\",\"code\":\"8000040001007\",\"name\":\"SKY VODKA\",\"unit\":\"4\",\"cost\":\"1500.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8000040001007\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"111\",\"supplier1price\":\"1500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sky-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SKY VODKA\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1190, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"242\",\"code\":\"8000040002509\",\"name\":\"CAMPARI 750ML\",\"unit\":\"4\",\"cost\":\"1440.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8000040002509\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"1440.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"campari-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAMPARI 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1191, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"612\",\"code\":\"8000353000056\",\"name\":\"LUXARDO SAMBUCA  DEI CESARI\",\"unit\":\"4\",\"cost\":\"1050.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8000353000056\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1050.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"luxardo-sambuca-dei-cesari\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LUXARDO SAMBUCA  DEI CESARI\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1192, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"614\",\"code\":\"8000353004207\",\"name\":\"LUXARDO SAMBUCA PEAR\",\"unit\":\"4\",\"cost\":\"1050.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8000353004207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1050.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"luxardo-sambuca-pear\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LUXARDO SAMBUCA PEAR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1193, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"613\",\"code\":\"8000353007307\",\"name\":\"LUXARDO SAMBUCA CRANBERRY\",\"unit\":\"4\",\"cost\":\"1050.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8000353007307\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1050.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"luxardo-sambuca-cranberry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"LUXARDO SAMBUCA CRANBERRY\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1194, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"804\",\"code\":\"800040807043\",\"name\":\"SKY INFUSSION 750ML\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"800040807043\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"sky-infussion-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SKY INFUSSION 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1195, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"280\",\"code\":\"80432400395\",\"name\":\"CHIVAS REGAL WHISKY 750ML 12YRS\",\"unit\":\"4\",\"cost\":\"3450.0000\",\"price\":\"3800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"80432400395\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"3450.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"chivas-regal-whisky-750ml-12yrs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CHIVAS REGAL WHISKY 750ML 12YRS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1196, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"724\",\"code\":\"80432401767\",\"name\":\"PASSPORT SCOTCH 750ML\",\"unit\":\"4\",\"cost\":\"885.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"80432401767\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"885.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"passport-scotch-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PASSPORT SCOTCH 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1197, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"230\",\"code\":\"80480300029\",\"name\":\"BOMBAY 750ML\",\"unit\":\"4\",\"cost\":\"1080.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"80480300029\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"1080.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bombay-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BOMBAY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1198, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"528\",\"code\":\"80686001409\",\"name\":\"jeam beam white 750ml\",\"unit\":\"4\",\"cost\":\"1500.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"80686001409\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"50\",\"supplier1price\":\"1500.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jeam-beam-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jeam beam white 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1199, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"514\",\"code\":\"82184090442\",\"name\":\"JACK DANIELS 1 LITRE\",\"unit\":\"4\",\"cost\":\"3400.0000\",\"price\":\"3800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"82184090442\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"3400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniels-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIELS 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1200, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"516\",\"code\":\"82184090473\",\"name\":\"JACK DANIELS 700ML\",\"unit\":\"4\",\"cost\":\"2700.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"82184090473\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"2700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jack-daniels-700ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"JACK DANIELS 700ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1201, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"728\",\"code\":\"8410702004541\",\"name\":\"PENASOL 750ML\",\"unit\":\"4\",\"cost\":\"523.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702004541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"523.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1202, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"734\",\"code\":\"8410702004558\",\"name\":\"penasol white 750ml\",\"unit\":\"4\",\"cost\":\"476.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702004558\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"476.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"penasol white 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1203, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"730\",\"code\":\"8410702005005\",\"name\":\"PENASOL SANGRIA 1.5 LITRE\",\"unit\":\"4\",\"cost\":\"753.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702005005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"753.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-sangria-15-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL SANGRIA 1.5 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1204, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"729\",\"code\":\"8410702005036\",\"name\":\"PENASOL SANGRIA 1 LITRE\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702005036\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-sangria-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL SANGRIA 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1205, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"732\",\"code\":\"8410702006545\",\"name\":\"PENASOL TINTO (red) 1 LITRE\",\"unit\":\"4\",\"cost\":\"479.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702006545\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"479.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-tinto-red-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL TINTO (red) 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1206, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"733\",\"code\":\"8410702006552\",\"name\":\"PENASOL TINTO (white\\/green)1 LITRE\",\"unit\":\"4\",\"cost\":\"479.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702006552\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"479.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-tinto-whitegreen1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL TINTO (white\\/green)1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1207, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"727\",\"code\":\"8410702015271\",\"name\":\"penasol  sweet blanco tetra 1l\",\"unit\":\"4\",\"cost\":\"479.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702015271\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"479.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-sweet-blanco-tetra-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"penasol  sweet blanco tetra 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1208, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"731\",\"code\":\"8410702026550\",\"name\":\"PENASOL TINTO (blue) 1 LITRE\",\"unit\":\"4\",\"cost\":\"479.0000\",\"price\":\"550.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8410702026550\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"479.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"penasol-tinto-blue-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PENASOL TINTO (blue) 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1209, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"235\",\"code\":\"8414771851327\",\"name\":\"BRANDY NAPOLEON RESERVE VSOP 1LITRE\",\"unit\":\"4\",\"cost\":\"1400.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771851327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"brandy-napoleon-reserve-vsop-1litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BRANDY NAPOLEON RESERVE VSOP 1LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1210, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"113\",\"code\":\"8414771853208\",\"name\":\"BV LAND MALT CREAM 750ML\",\"unit\":\"4\",\"cost\":\"800.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"25\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771853208\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"800.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bv-land-malt-cream-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BV LAND MALT CREAM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1211, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"883\",\"code\":\"8414771854601\",\"name\":\"TRES SOMBREROS SILVER TEQUILA 750ML\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"21\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771854601\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tres-sombreros-silver-tequila-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TRES SOMBREROS SILVER TEQUILA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1212, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"434\",\"code\":\"8414771854793\",\"name\":\"GLEN SILVER\'S 750ML\",\"unit\":\"4\",\"cost\":\"1100.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771854793\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"41\",\"supplier1price\":\"1100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glen-silvers-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GLEN SILVER\'S 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1213, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"435\",\"code\":\"8414771854809\",\"name\":\"GLEN SILVERS WHISKY 1LTR\",\"unit\":\"4\",\"cost\":\"1400.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771854809\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"glen-silvers-whisky-1ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"GLEN SILVERS WHISKY 1LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1214, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"882\",\"code\":\"8414771860824\",\"name\":\"TRES SOMBREROS GOLD TEQUILA 750ML\",\"unit\":\"4\",\"cost\":\"1200.0000\",\"price\":\"1700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"21\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8414771860824\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"40\",\"supplier1price\":\"1200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"tres-sombreros-gold-tequila-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"TRES SOMBREROS GOLD TEQUILA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1215, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"910\",\"code\":\"8436549541032\",\"name\":\"VINA LASTRA DRY WHITE 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8436549541032\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"54\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vina-lastra-dry-white-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VINA LASTRA DRY WHITE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1216, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"909\",\"code\":\"8436549541049\",\"name\":\"VINA LASTRA DRY RED 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8436549541049\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"54\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"vina-lastra-dry-red-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"VINA LASTRA DRY RED 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1217, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"623\",\"code\":\"8680734005759\",\"name\":\"MAX FLY 330ML\",\"unit\":\"4\",\"cost\":\"110.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8680734005759\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"110.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"max-fly-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MAX FLY 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1218, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"263\",\"code\":\"8690582722401\",\"name\":\"CARLSBERG\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8690582722401\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"carlsberg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARLSBERG\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1219, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"253\",\"code\":\"87000006928\",\"name\":\"CAPTAIN MORGAN JAMAICA RUM 750ML\",\"unit\":\"4\",\"cost\":\"1280.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"87000006928\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"69\",\"supplier1price\":\"1280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"captain-morgan-jamaica-rum-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPTAIN MORGAN JAMAICA RUM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1220, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"466\",\"code\":\"8712000900045\",\"name\":\"heinekken 500ml can\",\"unit\":\"4\",\"cost\":\"180.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8712000900045\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"67\",\"supplier1price\":\"180.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"heinekken-500ml-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"heinekken 500ml can\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1221, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"465\",\"code\":\"8712000900663\",\"name\":\"HEINEKEN BOTTLE 330ML\",\"unit\":\"4\",\"cost\":\"192.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"23\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8712000900663\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"67\",\"supplier1price\":\"192.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"heineken-bottle-330ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"HEINEKEN BOTTLE 330ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1222, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"293\",\"code\":\"87126037\",\"name\":\"COCACOLA 330ML gls\",\"unit\":\"4\",\"cost\":\"24.1600\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"87126037\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"cocacola-330ml-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"COCACOLA 330ML gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1223, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"656\",\"code\":\"8714800003278\",\"name\":\"MYERS 1 LTR\",\"unit\":\"4\",\"cost\":\"2200.0000\",\"price\":\"2400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800003278\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"114\",\"supplier1price\":\"2200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"myers-1-ltr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MYERS 1 LTR\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1224, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"167\",\"code\":\"8714800004114\",\"name\":\"BAVARIA 8.6 (original) 500ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800004114\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"28\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bavaria-86-original-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAVARIA 8.6 (original) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1225, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"170\",\"code\":\"8714800011426\",\"name\":\"Bavaria original malt 350ml\",\"unit\":\"4\",\"cost\":\"121.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800011426\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"121.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bavaria-original-malt-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Bavaria original malt 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1226, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"168\",\"code\":\"8714800014182\",\"name\":\"BAVARIA 8.6 RED 500ML\",\"unit\":\"4\",\"cost\":\"145.0000\",\"price\":\"180.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800014182\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"28\",\"supplier1price\":\"145.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bavaria-86-red-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAVARIA 8.6 RED 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1227, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"169\",\"code\":\"8714800017602\",\"name\":\"Bavaria apple 350ml\",\"unit\":\"4\",\"cost\":\"121.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800017602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"121.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bavaria-apple-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Bavaria apple 350ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1228, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"166\",\"code\":\"8714800025898\",\"name\":\"BAVARIA 8.6 (black) 500ML\",\"unit\":\"4\",\"cost\":\"140.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8714800025898\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"28\",\"supplier1price\":\"140.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bavaria-86-black-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BAVARIA 8.6 (black) 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1229, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"149\",\"code\":\"8718104908857\",\"name\":\"ATLAS 16 MEDIUM STRONG\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8718104908857\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"37\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"atlas-16-medium-strong\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ATLAS 16 MEDIUM STRONG\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1230, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"698\",\"code\":\"8719326438436\",\"name\":\"OJ. 12% 500ML\",\"unit\":\"4\",\"cost\":\"175.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8719326438436\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"109\",\"supplier1price\":\"175.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oj-12-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OJ. 12% 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1231, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"699\",\"code\":\"8719327068540\",\"name\":\"OJ.16% 500ML\",\"unit\":\"4\",\"cost\":\"207.0000\",\"price\":\"240.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8719327068540\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"109\",\"supplier1price\":\"207.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"oj16-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OJ.16% 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1232, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"148\",\"code\":\"8725000639678\",\"name\":\"ATLAS 14 SUPER STRONG\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8725000639678\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"37\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"atlas-14-super-strong\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ATLAS 14 SUPER STRONG\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1233, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"147\",\"code\":\"8725000639679\",\"name\":\"ATLAS 12 SUPER STRONG\",\"unit\":\"4\",\"cost\":\"190.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8725000639679\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"37\",\"supplier1price\":\"190.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"atlas-12-super-strong\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ATLAS 12 SUPER STRONG\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1234, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"311\",\"code\":\"87303322\",\"name\":\"Dasani 500ml\",\"unit\":\"4\",\"cost\":\"23.3000\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"28\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"87303322\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"23.3000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"dasani-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Dasani 500ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1235, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"344\",\"code\":\"87654345\",\"name\":\"EURO BOTTLE\",\"unit\":\"4\",\"cost\":\"17.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"30\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"87654345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"17.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"euro-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"EURO BOTTLE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1236, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"723\",\"code\":\"8800402713\",\"name\":\"PADDY\'S 750ML\",\"unit\":\"4\",\"cost\":\"1185.0000\",\"price\":\"1400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8800402713\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"1185.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"paddys-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PADDY\'S 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1237, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"722\",\"code\":\"8800403136\",\"name\":\"PADDY\'S 375ML\",\"unit\":\"4\",\"cost\":\"632.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8800403136\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"632.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"paddys-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"PADDY\'S 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1238, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"795\",\"code\":\"8851123222006\",\"name\":\"SHARK 250ML\",\"unit\":\"4\",\"cost\":\"110.0000\",\"price\":\"130.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8851123222006\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"27\",\"supplier1price\":\"110.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"shark-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"SHARK 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1239, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"615\",\"code\":\"8851123224826\",\"name\":\"M-150\",\"unit\":\"4\",\"cost\":\"80.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8851123224826\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"33\",\"supplier1price\":\"80.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"m-150\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"M-150\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1240, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"258\",\"code\":\"8855790000028\",\"name\":\"CARABAO\",\"unit\":\"4\",\"cost\":\"100.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8855790000028\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"102\",\"supplier1price\":\"100.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"carabao\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CARABAO\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1241, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"496\",\"code\":\"8901199017447\",\"name\":\"ICE VODKA 750ML\",\"unit\":\"4\",\"cost\":\"475.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901199017447\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"475.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"ice-vodka-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ICE VODKA 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1242, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"204\",\"code\":\"8901199142064\",\"name\":\"BLACK PURE GRAIN WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901199142064\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-pure-grain-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK PURE GRAIN WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1243, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"501\",\"code\":\"8901522000108\",\"name\":\"IMPERIAL BLUE 750ML\",\"unit\":\"4\",\"cost\":\"617.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901522000108\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"617.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"imperial-blue-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"IMPERIAL BLUE 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1244, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"500\",\"code\":\"8901522001105\",\"name\":\"IMPERIAL BLUE 350ML\",\"unit\":\"4\",\"cost\":\"366.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901522001105\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"366.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"imperial-blue-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"IMPERIAL BLUE 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1245, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"499\",\"code\":\"8901522007107\",\"name\":\"IMPERIAL BLUE 250\",\"unit\":\"4\",\"cost\":\"240.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901522007107\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"240.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"imperial-blue-250\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"IMPERIAL BLUE 250\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1246, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"696\",\"code\":\"8901544011137\",\"name\":\"OFFICER CHOICE 375ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901544011137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"28\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"officer-choice-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OFFICER CHOICE 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1247, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"539\",\"code\":\"8901544017221\",\"name\":\"jolly rodger\",\"unit\":\"4\",\"cost\":\"1600.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901544017221\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"1600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"jolly-rodger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"jolly rodger\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1248, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"697\",\"code\":\"8901544018020\",\"name\":\"officers choice 750ml\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901544018020\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"29\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"officers-choice-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"officers choice 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1249, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"596\",\"code\":\"8901544019829\",\"name\":\"KYRON\",\"unit\":\"4\",\"cost\":\"1700.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901544019829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"19\",\"supplier1price\":\"1700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"kyron\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KYRON\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1250, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"133\",\"code\":\"8901556010722\",\"name\":\"AFRI BULL CHOCOLATE RUM 750 ML\",\"unit\":\"4\",\"cost\":\"605.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901556010722\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"605.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"afri-bull-chocolate-rum-750-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AFRI BULL CHOCOLATE RUM 750 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1251, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"618\",\"code\":\"8901556013327\",\"name\":\"MACMOHAN 750ML\",\"unit\":\"4\",\"cost\":\"670.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901556013327\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"670.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"macmohan-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MACMOHAN 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1252, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"617\",\"code\":\"8901556013334\",\"name\":\"macmohan 375ml\",\"unit\":\"4\",\"cost\":\"260.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901556013334\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"260.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"macmohan-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"macmohan 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1253, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"134\",\"code\":\"8901556019718\",\"name\":\"AFRIBLUE CAFE RUM 1 LITRE\",\"unit\":\"4\",\"cost\":\"900.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901556019718\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"900.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"afriblue-cafe-rum-1-litre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AFRIBLUE CAFE RUM 1 LITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1254, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"132\",\"code\":\"8901556019725\",\"name\":\"AFRI BULL CAFE RUM  750ML\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"18\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901556019725\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"afri-bull-cafe-rum-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"AFRI BULL CAFE RUM  750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1255, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"502\",\"code\":\"8901591005103\",\"name\":\"IMPERIAL KING WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"550.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8901591005103\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"550.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"imperial-king-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"IMPERIAL KING WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1256, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"342\",\"code\":\"8902136811012\",\"name\":\"Eristoff 750ml\",\"unit\":\"4\",\"cost\":\"850.0000\",\"price\":\"1100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902136811012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"45\",\"supplier1price\":\"850.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"eristoff-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Eristoff 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1257, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"925\",\"code\":\"8902146010313\",\"name\":\"WHYTEHALL FIRE 1L\",\"unit\":\"4\",\"cost\":\"858.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902146010313\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"858.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"whytehall-fire-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHYTEHALL FIRE 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1258, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"926\",\"code\":\"8902146014717\",\"name\":\"WHYTEHALL HONEY 1L\",\"unit\":\"4\",\"cost\":\"858.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902146014717\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"858.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"whytehall-honey-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"WHYTEHALL HONEY 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1259, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"748\",\"code\":\"8902147003567\",\"name\":\"RADICO GOLD  PREMIUM 750ML\",\"unit\":\"4\",\"cost\":\"539.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"22\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902147003567\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"539.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"radico-gold-premium-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RADICO GOLD  PREMIUM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1260, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"128\",\"code\":\"8902147010329\",\"name\":\"8 PM HONEY LIQUEUR 750ml\",\"unit\":\"4\",\"cost\":\"747.0000\",\"price\":\"950.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902147010329\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"747.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"8-pm-honey-liqueur-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"8 PM HONEY LIQUEUR 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1261, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"126\",\"code\":\"8902147010428\",\"name\":\"8 PM FIRE LIQUEUR 750ML\",\"unit\":\"4\",\"cost\":\"747.0000\",\"price\":\"950.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902147010428\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"747.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"8-pm-fire-liqueur-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"8 PM FIRE LIQUEUR 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1262, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"129\",\"code\":\"8902147010916\",\"name\":\"8 PM WHISKY ILITRE\",\"unit\":\"4\",\"cost\":\"924.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902147010916\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"924.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"8-pm-whisky-ilitre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"8 PM WHISKY ILITRE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1263, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"127\",\"code\":\"8902147010923\",\"name\":\"8 PM GRAIN BLENDED WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"641.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902147010923\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"641.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"8-pm-grain-blended-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"8 PM GRAIN BLENDED WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1264, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"919\",\"code\":\"8902178001808\",\"name\":\"White House 750ml\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902178001808\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"white-house-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"White House 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1265, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"918\",\"code\":\"8902178005059\",\"name\":\"White house 375ml\",\"unit\":\"4\",\"cost\":\"320.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902178005059\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"99\",\"supplier1price\":\"320.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"white-house-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"White house 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1266, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"616\",\"code\":\"8902967200573\",\"name\":\"MACDOWELLS\",\"unit\":\"4\",\"cost\":\"675.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8902967200573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"36\",\"supplier1price\":\"675.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"macdowells\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MACDOWELLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1267, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"682\",\"code\":\"8904020701027\",\"name\":\"NEON (premium) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701027\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-premium-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (premium) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1268, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"681\",\"code\":\"8904020701034\",\"name\":\"NEON (premium) 375ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701034\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-premium-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (premium) 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1269, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"688\",\"code\":\"8904020701416\",\"name\":\"neptune pure grain\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701416\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neptune-pure-grain\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"neptune pure grain\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1270, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"677\",\"code\":\"8904020701652\",\"name\":\"NEON (coffee) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-coffee-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (coffee) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1271, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"684\",\"code\":\"89040207016520\",\"name\":\"NEON (VANILA) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"89040207016520\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-vanila-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (VANILA) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1272, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"679\",\"code\":\"89040207016589\",\"name\":\"NEON (ORANGE) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"89040207016589\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-orange-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (ORANGE) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1273, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"676\",\"code\":\"8904020701669\",\"name\":\"NEON (coffee) 375ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701669\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-coffee-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (coffee) 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1274, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"686\",\"code\":\"8904020701805\",\"name\":\"NEON(chocolate) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701805\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neonchocolate-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON(chocolate) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1275, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"675\",\"code\":\"8904020701829\",\"name\":\"NEON (chocolate) 375ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020701829\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-chocolate-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (chocolate) 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1276, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"178\",\"code\":\"8904020702109\",\"name\":\"BELLWETHER WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"550.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020702109\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"550.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"bellwether-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BELLWETHER WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1277, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"685\",\"code\":\"8904020702345\",\"name\":\"neon chocolate 200ml\",\"unit\":\"4\",\"cost\":\"150.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020702345\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"150.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-chocolate-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"neon chocolate 200ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1278, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"687\",\"code\":\"8904020702352\",\"name\":\"neoncoffee 200ml\",\"unit\":\"4\",\"cost\":\"150.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020702352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"150.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neoncoffee-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"neoncoffee 200ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1279, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"678\",\"code\":\"8904020709852\",\"name\":\"NEON (MANGO) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904020709852\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-mango-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (MANGO) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1280, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"774\",\"code\":\"8904023701352\",\"name\":\"ROYAL CIRCLE WHISKY 1L\",\"unit\":\"4\",\"cost\":\"750.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904023701352\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"750.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"royal-circle-whisky-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ROYAL CIRCLE WHISKY 1L\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1281, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"683\",\"code\":\"89040298761652\",\"name\":\"NEON (STRAWBERRY) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"89040298761652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-strawberry-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (STRAWBERRY) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1282, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"674\",\"code\":\"8904096071652\",\"name\":\"NEON (APPLE) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904096071652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-apple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (APPLE) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1283, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"680\",\"code\":\"8904701652\",\"name\":\"NEON (PINEAPPLE) 750ML\",\"unit\":\"4\",\"cost\":\"570.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8904701652\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"65\",\"supplier1price\":\"570.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"neon-pineapple-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NEON (PINEAPPLE) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1284, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"401\",\"code\":\"8905694525919\",\"name\":\"FREEDOM WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"600.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8905694525919\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"48\",\"supplier1price\":\"600.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"freedom-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FREEDOM WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1285, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"764\",\"code\":\"8906043031525\",\"name\":\"reserve rare whisky750ml\",\"unit\":\"4\",\"cost\":\"590.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906043031525\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"590.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"reserve-rare-whisky750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"reserve rare whisky750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1286, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"304\",\"code\":\"8906054940120\",\"name\":\"CRAZY COCK 750ML\",\"unit\":\"4\",\"cost\":\"775.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906054940120\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"775.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"crazy-cock-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CRAZY COCK 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1287, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"303\",\"code\":\"8906054940137\",\"name\":\"CRAZY COCK 375ML\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"480.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906054940137\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"crazy-cock-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CRAZY COCK 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1288, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"302\",\"code\":\"8906054940410\",\"name\":\"CRAZY COCK 200ml\",\"unit\":\"4\",\"cost\":\"300.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"12\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906054940410\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"26\",\"supplier1price\":\"300.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"crazy-cock-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CRAZY COCK 200ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1289, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"505\",\"code\":\"8906080740534\",\"name\":\"Iris whisky 750ml\",\"unit\":\"4\",\"cost\":\"700.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906080740534\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"700.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"iris-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Iris whisky 750ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1290, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"504\",\"code\":\"8906080740541\",\"name\":\"IRIS 350ML\",\"unit\":\"4\",\"cost\":\"340.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906080740541\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"340.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"iris-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"IRIS 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1291, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"203\",\"code\":\"8906085070025\",\"name\":\"BLACK N BOLD 375ML\",\"unit\":\"4\",\"cost\":\"290.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8906085070025\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"57\",\"supplier1price\":\"290.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-n-bold-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK N BOLD 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1292, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"207\",\"code\":\"8908001140430\",\"name\":\"BLUE CARPET gin 375ml\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"13\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908001140430\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"102\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"blue-carpet-gin-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLUE CARPET gin 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1293, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"369\",\"code\":\"8908001140461\",\"name\":\"FIRST CHOICE PREMIUM WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"400.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908001140461\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"102\",\"supplier1price\":\"400.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"first-choice-premium-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FIRST CHOICE PREMIUM WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1294, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"370\",\"code\":\"8908001140478\",\"name\":\"FIRST CHOICE PREMIUM WHISKYA 350ML\",\"unit\":\"4\",\"cost\":\"200.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908001140478\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"102\",\"supplier1price\":\"200.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"first-choice-premium-whiskya-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"FIRST CHOICE PREMIUM WHISKYA 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1295, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"763\",\"code\":\"8908003966274\",\"name\":\"reserve rare whisky 375ml\",\"unit\":\"4\",\"cost\":\"325.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908003966274\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"325.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"reserve-rare-whisky-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"reserve rare whisky 375ml\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1296, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"155\",\"code\":\"8908003966700\",\"name\":\"BACKBENCHER 750 ML\",\"unit\":\"4\",\"cost\":\"650.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908003966700\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"18\",\"supplier1price\":\"650.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"backbencher-750-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BACKBENCHER 750 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1297, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"694\",\"code\":\"8908006354009\",\"name\":\"O PM 750ML\",\"unit\":\"4\",\"cost\":\"620.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908006354009\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"620.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"o-pm-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"O PM 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1298, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"140\",\"code\":\"8908006354191\",\"name\":\"ALL SEASONS WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"800.7000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908006354191\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"800.7000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"all-seasons-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALL SEASONS WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1299, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"139\",\"code\":\"8908006354207\",\"name\":\"ALL SEASONS WHISKY 375 ML\",\"unit\":\"4\",\"cost\":\"384.8000\",\"price\":\"490.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908006354207\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"384.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"all-seasons-whisky-375-ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALL SEASONS WHISKY 375 ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1300, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"693\",\"code\":\"8908006354474\",\"name\":\"O PM 250ML\",\"unit\":\"4\",\"cost\":\"165.0000\",\"price\":\"220.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"16\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908006354474\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"165.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"o-pm-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"O PM 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1301, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"138\",\"code\":\"8908006354573\",\"name\":\"ALL SEASONS WHISKY 250ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"320.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908006354573\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"92\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"all-seasons-whisky-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"ALL SEASONS WHISKY 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1302, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"701\",\"code\":\"8908009687005\",\"name\":\"OLD PROFESSOR WHISKY 750ML\",\"unit\":\"4\",\"cost\":\"550.0000\",\"price\":\"900.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908009687005\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"58\",\"supplier1price\":\"550.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"old-professor-whisky-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OLD PROFESSOR WHISKY 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1303, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"700\",\"code\":\"8908009687012\",\"name\":\"OLD PROFESSOR WHISKY 375ML\",\"unit\":\"4\",\"cost\":\"280.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"17\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"8908009687012\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"38\",\"supplier1price\":\"280.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"old-professor-whisky-375ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"OLD PROFESSOR WHISKY 375ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1304, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"744\",\"code\":\"9008442000320\",\"name\":\"POWER HORSE\",\"unit\":\"4\",\"cost\":\"80.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"14\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"9008442000320\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"23\",\"supplier1price\":\"80.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"power-horse\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"POWER HORSE\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1305, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"750\",\"code\":\"90162602\",\"name\":\"RED BULL 250ML\",\"unit\":\"4\",\"cost\":\"144.0000\",\"price\":\"170.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90162602\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"34\",\"supplier1price\":\"144.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"red-bull-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"RED BULL 250ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1306, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"351\",\"code\":\"90377884\",\"name\":\"Fanta 350ml pls\",\"unit\":\"4\",\"cost\":\"31.5000\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90377884\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"31.5000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"fanta-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Fanta 350ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1307, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"196\",\"code\":\"90377888\",\"name\":\"BLACK CURRENT 350ml pls\",\"unit\":\"4\",\"cost\":\"27.6600\",\"price\":\"50.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"15\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90377888\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"27.6600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"black-current-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"BLACK CURRENT 350ml pls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1308, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"692\",\"code\":\"90418013\",\"name\":\"NOVIDA 350ML\",\"unit\":\"4\",\"cost\":\"32.0800\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90418013\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"63\",\"supplier1price\":\"32.0800\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"novida-350ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"NOVIDA 350ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1309, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"593\",\"code\":\"90418297\",\"name\":\"Krest 350ml PLS\",\"unit\":\"4\",\"cost\":\"31.4500\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90418297\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"31.4500\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"krest-350ml-pls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"Krest 350ml PLS\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1310, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"641\",\"code\":\"90490279\",\"name\":\"MINUTE MAID 500ML\",\"unit\":\"4\",\"cost\":\"58.8000\",\"price\":\"70.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"31\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90490279\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"58.8000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"minute-maid-500ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"MINUTE MAID 500ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1311, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"592\",\"code\":\"90492112\",\"name\":\"KREST 330L gls\",\"unit\":\"4\",\"cost\":\"24.1600\",\"price\":\"40.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90492112\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1600\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"krest-330l-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"KREST 330L gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1312, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"846\",\"code\":\"90492143\",\"name\":\"stoney 330mls gls\",\"unit\":\"4\",\"cost\":\"24.1200\",\"price\":\"30.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"26\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"90492143\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"70\",\"supplier1price\":\"24.1200\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"stoney-330mls-gls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"stoney 330mls gls\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1313, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"345\",\"code\":\"98765432\",\"name\":\"EURO SHELL\",\"unit\":\"4\",\"cost\":\"335.0000\",\"price\":\"335.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"30\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"98765432\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"101\",\"supplier1price\":\"335.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"euro-shell\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"EURO SHELL\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1314, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"243\",\"code\":\"CAPRICE\",\"name\":\"CAPRICE (sweetwhite) 750ML\",\"unit\":\"4\",\"cost\":\"490.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"caprice\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"490.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-sweetwhite-750ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"CAPRICE (sweetwhite) 750ML\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1315, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"246\",\"code\":\"caprice dry white 1l\",\"name\":\"caprice dry white 1l\",\"unit\":\"4\",\"cost\":\"563.6100\",\"price\":\"650.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"11\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"caprice dry white 1l\",\"file\":null,\"product_details\":null,\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"64\",\"supplier1price\":\"563.6100\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":null,\"slug\":\"caprice-dry-white-1l\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"caprice dry white 1l\",\"hide_pos\":\"0\"}}', '2022-09-28 12:56:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1316, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"48\",\"date\":\"2022-05-25 12:57:00\",\"reference_no\":\"2022\\/05\\/0045\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon &amp; Mixed Grey&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"295\",\"adjustment_id\":\"48\",\"product_id\":\"69\",\"option_id\":\"613\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"296\",\"adjustment_id\":\"48\",\"product_id\":\"71\",\"option_id\":\"630\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"297\",\"adjustment_id\":\"48\",\"product_id\":\"75\",\"option_id\":\"683\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"298\",\"adjustment_id\":\"48\",\"product_id\":\"77\",\"option_id\":\"711\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"299\",\"adjustment_id\":\"48\",\"product_id\":\"79\",\"option_id\":\"737\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"300\",\"adjustment_id\":\"48\",\"product_id\":\"81\",\"option_id\":\"763\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"301\",\"adjustment_id\":\"48\",\"product_id\":\"83\",\"option_id\":\"791\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"302\",\"adjustment_id\":\"48\",\"product_id\":\"79\",\"option_id\":\"741\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"303\",\"adjustment_id\":\"48\",\"product_id\":\"81\",\"option_id\":\"766\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"304\",\"adjustment_id\":\"48\",\"product_id\":\"83\",\"option_id\":\"793\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1317, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"47\",\"date\":\"2022-05-20 13:23:00\",\"reference_no\":\"2022\\/05\\/0044\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Navy Blue &amp; Navy Stripe&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"293\",\"adjustment_id\":\"47\",\"product_id\":\"73\",\"option_id\":\"659\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"294\",\"adjustment_id\":\"47\",\"product_id\":\"71\",\"option_id\":\"638\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1318, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"46\",\"date\":\"2022-05-20 13:17:00\",\"reference_no\":\"2022\\/05\\/0043\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Mixed Grey&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"289\",\"adjustment_id\":\"46\",\"product_id\":\"75\",\"option_id\":\"687\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"290\",\"adjustment_id\":\"46\",\"product_id\":\"77\",\"option_id\":\"713\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1319, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"45\",\"date\":\"2022-05-20 13:11:00\",\"reference_no\":\"2022\\/05\\/0042\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"282\",\"adjustment_id\":\"45\",\"product_id\":\"67\",\"option_id\":\"577\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"283\",\"adjustment_id\":\"45\",\"product_id\":\"75\",\"option_id\":\"683\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"284\",\"adjustment_id\":\"45\",\"product_id\":\"79\",\"option_id\":\"737\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"285\",\"adjustment_id\":\"45\",\"product_id\":\"81\",\"option_id\":\"763\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"286\",\"adjustment_id\":\"45\",\"product_id\":\"83\",\"option_id\":\"791\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"287\",\"adjustment_id\":\"45\",\"product_id\":\"107\",\"option_id\":\"1065\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"288\",\"adjustment_id\":\"45\",\"product_id\":\"108\",\"option_id\":\"1081\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1320, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"44\",\"date\":\"2022-05-18 20:48:00\",\"reference_no\":\"2022\\/05\\/0041\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;KK BLUE &amp; RED STRIPE&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"271\",\"adjustment_id\":\"44\",\"product_id\":\"70\",\"option_id\":\"628\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"272\",\"adjustment_id\":\"44\",\"product_id\":\"67\",\"option_id\":\"1145\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"273\",\"adjustment_id\":\"44\",\"product_id\":\"69\",\"option_id\":\"1144\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"274\",\"adjustment_id\":\"44\",\"product_id\":\"74\",\"option_id\":\"1143\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1321, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"41\",\"date\":\"2022-05-17 15:19:00\",\"reference_no\":\"2022\\/05\\/0038\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red Strip&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"255\",\"adjustment_id\":\"41\",\"product_id\":\"70\",\"option_id\":\"628\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"256\",\"adjustment_id\":\"41\",\"product_id\":\"72\",\"option_id\":\"654\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"257\",\"adjustment_id\":\"41\",\"product_id\":\"73\",\"option_id\":\"664\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"258\",\"adjustment_id\":\"41\",\"product_id\":\"76\",\"option_id\":\"709\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"259\",\"adjustment_id\":\"41\",\"product_id\":\"78\",\"option_id\":\"735\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1322, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"40\",\"date\":\"2022-05-16 18:26:00\",\"reference_no\":\"2022\\/05\\/0037\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon and Maroon Stripe&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"251\",\"adjustment_id\":\"40\",\"product_id\":\"67\",\"option_id\":\"577\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"252\",\"adjustment_id\":\"40\",\"product_id\":\"74\",\"option_id\":\"666\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"253\",\"adjustment_id\":\"40\",\"product_id\":\"72\",\"option_id\":\"649\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"254\",\"adjustment_id\":\"40\",\"product_id\":\"73\",\"option_id\":\"658\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1323, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"39\",\"date\":\"2022-05-16 18:23:00\",\"reference_no\":\"2022\\/05\\/0036\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Mixed Grey Plain&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"246\",\"adjustment_id\":\"39\",\"product_id\":\"69\",\"option_id\":\"607\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"247\",\"adjustment_id\":\"39\",\"product_id\":\"71\",\"option_id\":\"633\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"248\",\"adjustment_id\":\"39\",\"product_id\":\"74\",\"option_id\":\"669\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1324, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"38\",\"date\":\"2022-05-15 22:39:00\",\"reference_no\":\"2022\\/05\\/0035\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"245\",\"adjustment_id\":\"38\",\"product_id\":\"84\",\"option_id\":\"810\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1325, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"43\",\"date\":\"2022-05-12 08:00:00\",\"reference_no\":\"2022\\/05\\/0040\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"268\",\"adjustment_id\":\"43\",\"product_id\":\"70\",\"option_id\":\"622\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"269\",\"adjustment_id\":\"43\",\"product_id\":\"72\",\"option_id\":\"647\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"270\",\"adjustment_id\":\"43\",\"product_id\":\"73\",\"option_id\":\"659\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1326, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-05-08 17:45:00\",\"reference_no\":\"2022\\/05\\/0030\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Marvins&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"173\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"819\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"174\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"817\",\"quantity\":\"34.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"175\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"824\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"176\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"818\",\"quantity\":\"108.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"177\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"821\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"178\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"822\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"179\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"830\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"180\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"820\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"181\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"831\",\"quantity\":\"42.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"182\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"825\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"183\",\"adjustment_id\":\"33\",\"product_id\":\"85\",\"option_id\":\"828\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"184\",\"adjustment_id\":\"33\",\"product_id\":\"86\",\"option_id\":\"832\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1327, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-05-08 17:45:00\",\"reference_no\":\"2022\\/05\\/0031\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red &amp; Green&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"223\",\"adjustment_id\":\"34\",\"product_id\":\"101\",\"option_id\":\"990\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"224\",\"adjustment_id\":\"34\",\"product_id\":\"102\",\"option_id\":\"1007\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"225\",\"adjustment_id\":\"34\",\"product_id\":\"104\",\"option_id\":\"1041\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"226\",\"adjustment_id\":\"34\",\"product_id\":\"104\",\"option_id\":\"1044\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"227\",\"adjustment_id\":\"34\",\"product_id\":\"102\",\"option_id\":\"1008\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1328, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"date\":\"2022-05-08 17:45:00\",\"reference_no\":\"2022\\/05\\/0032\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Royal Stripe&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"228\",\"adjustment_id\":\"35\",\"product_id\":\"82\",\"option_id\":\"788\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1329, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-05-08 17:45:00\",\"reference_no\":\"2022\\/05\\/0033\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Legwarmer&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"237\",\"adjustment_id\":\"36\",\"product_id\":\"87\",\"option_id\":\"835\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1330, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"37\",\"date\":\"2022-05-08 17:45:00\",\"reference_no\":\"2022\\/05\\/0034\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"241\",\"adjustment_id\":\"37\",\"product_id\":\"94\",\"option_id\":\"940\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"242\",\"adjustment_id\":\"37\",\"product_id\":\"95\",\"option_id\":\"950\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"243\",\"adjustment_id\":\"37\",\"product_id\":\"99\",\"option_id\":\"980\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"244\",\"adjustment_id\":\"37\",\"product_id\":\"98\",\"option_id\":\"1128\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1331, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"date\":\"2022-05-08 17:40:00\",\"reference_no\":\"2022\\/05\\/0029\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red 3 Large &amp; 4 XL&lt;&sol;p&gt;&lt;p&gt;White 20 Large and 1 XL&lt;&sol;p&gt;&lt;p&gt;Black 4 Medium&comma; 4 Adults&comma; 17 Small Adult&comma; 12 Adults and 2 Kids&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"163\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"869\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"164\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"869\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"165\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"880\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"166\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"880\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"167\",\"adjustment_id\":\"32\",\"product_id\":\"90\",\"option_id\":\"895\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"168\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"879\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"169\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"879\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"170\",\"adjustment_id\":\"32\",\"product_id\":\"90\",\"option_id\":\"892\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"171\",\"adjustment_id\":\"32\",\"product_id\":\"90\",\"option_id\":\"892\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"172\",\"adjustment_id\":\"32\",\"product_id\":\"89\",\"option_id\":\"879\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1332, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-05-08 17:30:00\",\"reference_no\":\"2022\\/05\\/0028\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Ash Grey&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"156\",\"adjustment_id\":\"31\",\"product_id\":\"67\",\"option_id\":\"586\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"157\",\"adjustment_id\":\"31\",\"product_id\":\"69\",\"option_id\":\"612\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"158\",\"adjustment_id\":\"31\",\"product_id\":\"71\",\"option_id\":\"640\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"159\",\"adjustment_id\":\"31\",\"product_id\":\"74\",\"option_id\":\"675\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"160\",\"adjustment_id\":\"31\",\"product_id\":\"75\",\"option_id\":\"699\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"161\",\"adjustment_id\":\"31\",\"product_id\":\"77\",\"option_id\":\"719\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"162\",\"adjustment_id\":\"31\",\"product_id\":\"79\",\"option_id\":\"746\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1333, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-05-08 17:25:00\",\"reference_no\":\"2022\\/05\\/0027\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Purple Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"154\",\"adjustment_id\":\"30\",\"product_id\":\"70\",\"option_id\":\"620\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"155\",\"adjustment_id\":\"30\",\"product_id\":\"72\",\"option_id\":\"648\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1334, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-05-08 17:20:00\",\"reference_no\":\"2022\\/05\\/0026\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Chocolate Brown&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"153\",\"adjustment_id\":\"29\",\"product_id\":\"69\",\"option_id\":\"618\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1335, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-05-08 17:10:00\",\"reference_no\":\"2022\\/05\\/0023\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Grey Red Strip&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"146\",\"adjustment_id\":\"26\",\"product_id\":\"73\",\"option_id\":\"661\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"147\",\"adjustment_id\":\"26\",\"product_id\":\"76\",\"option_id\":\"708\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1336, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-05-08 17:10:00\",\"reference_no\":\"2022\\/05\\/0024\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Green Sleeveless&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"148\",\"adjustment_id\":\"27\",\"product_id\":\"102\",\"option_id\":\"1008\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"149\",\"adjustment_id\":\"27\",\"product_id\":\"104\",\"option_id\":\"1044\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1337, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-05-08 17:10:00\",\"reference_no\":\"2022\\/05\\/0025\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Ndengu Green&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"150\",\"adjustment_id\":\"28\",\"product_id\":\"69\",\"option_id\":\"611\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"151\",\"adjustment_id\":\"28\",\"product_id\":\"71\",\"option_id\":\"637\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1338, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-05-08 17:05:00\",\"reference_no\":\"2022\\/05\\/0022\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Azure White Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"138\",\"adjustment_id\":\"25\",\"product_id\":\"68\",\"option_id\":\"597\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"139\",\"adjustment_id\":\"25\",\"product_id\":\"70\",\"option_id\":\"619\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"140\",\"adjustment_id\":\"25\",\"product_id\":\"72\",\"option_id\":\"645\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"141\",\"adjustment_id\":\"25\",\"product_id\":\"73\",\"option_id\":\"655\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"142\",\"adjustment_id\":\"25\",\"product_id\":\"76\",\"option_id\":\"700\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"143\",\"adjustment_id\":\"25\",\"product_id\":\"80\",\"option_id\":\"753\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"144\",\"adjustment_id\":\"25\",\"product_id\":\"82\",\"option_id\":\"780\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"145\",\"adjustment_id\":\"25\",\"product_id\":\"84\",\"option_id\":\"807\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1339, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-05-08 17:00:00\",\"reference_no\":\"2022\\/05\\/0021\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Green White Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"130\",\"adjustment_id\":\"24\",\"product_id\":\"68\",\"option_id\":\"600\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"131\",\"adjustment_id\":\"24\",\"product_id\":\"70\",\"option_id\":\"626\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"132\",\"adjustment_id\":\"24\",\"product_id\":\"72\",\"option_id\":\"651\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"133\",\"adjustment_id\":\"24\",\"product_id\":\"73\",\"option_id\":\"662\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"134\",\"adjustment_id\":\"24\",\"product_id\":\"76\",\"option_id\":\"707\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"135\",\"adjustment_id\":\"24\",\"product_id\":\"78\",\"option_id\":\"733\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"136\",\"adjustment_id\":\"24\",\"product_id\":\"80\",\"option_id\":\"759\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"137\",\"adjustment_id\":\"24\",\"product_id\":\"82\",\"option_id\":\"787\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1340, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-05-08 16:55:00\",\"reference_no\":\"2022\\/05\\/0020\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Wine Red&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"119\",\"adjustment_id\":\"23\",\"product_id\":\"69\",\"option_id\":\"616\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"120\",\"adjustment_id\":\"23\",\"product_id\":\"74\",\"option_id\":\"679\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"121\",\"adjustment_id\":\"23\",\"product_id\":\"75\",\"option_id\":\"695\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1341, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-05-08 16:50:00\",\"reference_no\":\"2022\\/05\\/0019\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Mixed Grey Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"113\",\"adjustment_id\":\"22\",\"product_id\":\"70\",\"option_id\":\"624\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"114\",\"adjustment_id\":\"22\",\"product_id\":\"72\",\"option_id\":\"650\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"115\",\"adjustment_id\":\"22\",\"product_id\":\"73\",\"option_id\":\"660\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"116\",\"adjustment_id\":\"22\",\"product_id\":\"78\",\"option_id\":\"729\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"117\",\"adjustment_id\":\"22\",\"product_id\":\"80\",\"option_id\":\"758\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"118\",\"adjustment_id\":\"22\",\"product_id\":\"82\",\"option_id\":\"785\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1342, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-05-08 16:40:00\",\"reference_no\":\"2022\\/05\\/0018\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Biege&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"108\",\"adjustment_id\":\"21\",\"product_id\":\"69\",\"option_id\":\"606\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"109\",\"adjustment_id\":\"21\",\"product_id\":\"71\",\"option_id\":\"632\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"110\",\"adjustment_id\":\"21\",\"product_id\":\"74\",\"option_id\":\"667\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"111\",\"adjustment_id\":\"21\",\"product_id\":\"75\",\"option_id\":\"685\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"112\",\"adjustment_id\":\"21\",\"product_id\":\"77\",\"option_id\":\"712\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1343, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"19\",\"date\":\"2022-05-08 16:35:00\",\"reference_no\":\"2022\\/05\\/0016\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Navy Blue Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"100\",\"adjustment_id\":\"19\",\"product_id\":\"68\",\"option_id\":\"595\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"101\",\"adjustment_id\":\"19\",\"product_id\":\"70\",\"option_id\":\"622\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"102\",\"adjustment_id\":\"19\",\"product_id\":\"72\",\"option_id\":\"647\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"103\",\"adjustment_id\":\"19\",\"product_id\":\"73\",\"option_id\":\"659\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"104\",\"adjustment_id\":\"19\",\"product_id\":\"76\",\"option_id\":\"703\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"105\",\"adjustment_id\":\"19\",\"product_id\":\"78\",\"option_id\":\"730\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1344, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-05-08 16:35:00\",\"reference_no\":\"2022\\/05\\/0017\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Navy Sky Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"106\",\"adjustment_id\":\"20\",\"product_id\":\"73\",\"option_id\":\"1060\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"107\",\"adjustment_id\":\"20\",\"product_id\":\"76\",\"option_id\":\"1061\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1345, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"18\",\"date\":\"2022-05-08 16:30:00\",\"reference_no\":\"2022\\/05\\/0015\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Royal Blue Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"92\",\"adjustment_id\":\"18\",\"product_id\":\"70\",\"option_id\":\"627\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"93\",\"adjustment_id\":\"18\",\"product_id\":\"72\",\"option_id\":\"653\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"94\",\"adjustment_id\":\"18\",\"product_id\":\"73\",\"option_id\":\"663\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"95\",\"adjustment_id\":\"18\",\"product_id\":\"76\",\"option_id\":\"705\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"96\",\"adjustment_id\":\"18\",\"product_id\":\"78\",\"option_id\":\"734\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"97\",\"adjustment_id\":\"18\",\"product_id\":\"80\",\"option_id\":\"761\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"98\",\"adjustment_id\":\"18\",\"product_id\":\"82\",\"option_id\":\"788\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"99\",\"adjustment_id\":\"18\",\"product_id\":\"84\",\"option_id\":\"813\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1346, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"17\",\"date\":\"2022-05-08 16:25:00\",\"reference_no\":\"2022\\/05\\/0014\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"8\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"261\",\"adjustment_id\":\"17\",\"product_id\":\"68\",\"option_id\":\"596\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"262\",\"adjustment_id\":\"17\",\"product_id\":\"70\",\"option_id\":\"623\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"263\",\"adjustment_id\":\"17\",\"product_id\":\"72\",\"option_id\":\"649\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"264\",\"adjustment_id\":\"17\",\"product_id\":\"73\",\"option_id\":\"658\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"265\",\"adjustment_id\":\"17\",\"product_id\":\"76\",\"option_id\":\"704\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"266\",\"adjustment_id\":\"17\",\"product_id\":\"78\",\"option_id\":\"731\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"267\",\"adjustment_id\":\"17\",\"product_id\":\"80\",\"option_id\":\"757\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1347, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"16\",\"date\":\"2022-05-08 16:10:00\",\"reference_no\":\"2022\\/05\\/0013\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red Stripped&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"79\",\"adjustment_id\":\"16\",\"product_id\":\"68\",\"option_id\":\"602\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"80\",\"adjustment_id\":\"16\",\"product_id\":\"72\",\"option_id\":\"654\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"81\",\"adjustment_id\":\"16\",\"product_id\":\"76\",\"option_id\":\"709\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"82\",\"adjustment_id\":\"16\",\"product_id\":\"80\",\"option_id\":\"762\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"83\",\"adjustment_id\":\"16\",\"product_id\":\"82\",\"option_id\":\"789\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"84\",\"adjustment_id\":\"16\",\"product_id\":\"84\",\"option_id\":\"816\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1348, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"15\",\"date\":\"2022-05-08 16:00:00\",\"reference_no\":\"2022\\/05\\/0012\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Mixed Grey&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"70\",\"adjustment_id\":\"15\",\"product_id\":\"67\",\"option_id\":\"580\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"71\",\"adjustment_id\":\"15\",\"product_id\":\"69\",\"option_id\":\"607\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"72\",\"adjustment_id\":\"15\",\"product_id\":\"71\",\"option_id\":\"633\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"73\",\"adjustment_id\":\"15\",\"product_id\":\"74\",\"option_id\":\"669\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"74\",\"adjustment_id\":\"15\",\"product_id\":\"75\",\"option_id\":\"687\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"75\",\"adjustment_id\":\"15\",\"product_id\":\"77\",\"option_id\":\"713\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"76\",\"adjustment_id\":\"15\",\"product_id\":\"79\",\"option_id\":\"741\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"77\",\"adjustment_id\":\"15\",\"product_id\":\"81\",\"option_id\":\"766\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"78\",\"adjustment_id\":\"15\",\"product_id\":\"83\",\"option_id\":\"793\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1349, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"14\",\"date\":\"2022-05-08 15:50:00\",\"reference_no\":\"2022\\/05\\/0011\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Navy Light&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"62\",\"adjustment_id\":\"14\",\"product_id\":\"67\",\"option_id\":\"588\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"63\",\"adjustment_id\":\"14\",\"product_id\":\"69\",\"option_id\":\"614\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"64\",\"adjustment_id\":\"14\",\"product_id\":\"71\",\"option_id\":\"639\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"65\",\"adjustment_id\":\"14\",\"product_id\":\"75\",\"option_id\":\"693\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"66\",\"adjustment_id\":\"14\",\"product_id\":\"77\",\"option_id\":\"721\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"67\",\"adjustment_id\":\"14\",\"product_id\":\"79\",\"option_id\":\"749\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"68\",\"adjustment_id\":\"14\",\"product_id\":\"81\",\"option_id\":\"774\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"69\",\"adjustment_id\":\"14\",\"product_id\":\"83\",\"option_id\":\"802\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1350, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"13\",\"date\":\"2022-05-08 15:45:00\",\"reference_no\":\"2022\\/05\\/0010\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Navy Dark&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"53\",\"adjustment_id\":\"13\",\"product_id\":\"67\",\"option_id\":\"587\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"54\",\"adjustment_id\":\"13\",\"product_id\":\"69\",\"option_id\":\"613\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"55\",\"adjustment_id\":\"13\",\"product_id\":\"71\",\"option_id\":\"638\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"56\",\"adjustment_id\":\"13\",\"product_id\":\"74\",\"option_id\":\"677\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"57\",\"adjustment_id\":\"13\",\"product_id\":\"75\",\"option_id\":\"694\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"58\",\"adjustment_id\":\"13\",\"product_id\":\"77\",\"option_id\":\"720\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"59\",\"adjustment_id\":\"13\",\"product_id\":\"79\",\"option_id\":\"747\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"60\",\"adjustment_id\":\"13\",\"product_id\":\"81\",\"option_id\":\"773\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"61\",\"adjustment_id\":\"13\",\"product_id\":\"83\",\"option_id\":\"801\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1351, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"12\",\"date\":\"2022-05-08 15:30:00\",\"reference_no\":\"2022\\/05\\/0009\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Royal Blue&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"214\",\"adjustment_id\":\"12\",\"product_id\":\"67\",\"option_id\":\"592\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"215\",\"adjustment_id\":\"12\",\"product_id\":\"69\",\"option_id\":\"617\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"216\",\"adjustment_id\":\"12\",\"product_id\":\"71\",\"option_id\":\"644\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"217\",\"adjustment_id\":\"12\",\"product_id\":\"74\",\"option_id\":\"681\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"218\",\"adjustment_id\":\"12\",\"product_id\":\"75\",\"option_id\":\"698\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"219\",\"adjustment_id\":\"12\",\"product_id\":\"77\",\"option_id\":\"725\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"220\",\"adjustment_id\":\"12\",\"product_id\":\"79\",\"option_id\":\"752\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"221\",\"adjustment_id\":\"12\",\"product_id\":\"81\",\"option_id\":\"779\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"222\",\"adjustment_id\":\"12\",\"product_id\":\"83\",\"option_id\":\"806\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1352, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"11\",\"date\":\"2022-05-08 15:10:00\",\"reference_no\":\"2022\\/05\\/0007\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"205\",\"adjustment_id\":\"11\",\"product_id\":\"67\",\"option_id\":\"577\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"206\",\"adjustment_id\":\"11\",\"product_id\":\"69\",\"option_id\":\"604\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"207\",\"adjustment_id\":\"11\",\"product_id\":\"71\",\"option_id\":\"630\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"208\",\"adjustment_id\":\"11\",\"product_id\":\"74\",\"option_id\":\"666\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"209\",\"adjustment_id\":\"11\",\"product_id\":\"75\",\"option_id\":\"683\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"210\",\"adjustment_id\":\"11\",\"product_id\":\"77\",\"option_id\":\"711\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"211\",\"adjustment_id\":\"11\",\"product_id\":\"79\",\"option_id\":\"737\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"212\",\"adjustment_id\":\"11\",\"product_id\":\"81\",\"option_id\":\"763\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"213\",\"adjustment_id\":\"11\",\"product_id\":\"83\",\"option_id\":\"791\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1353, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"10\",\"date\":\"2022-05-08 15:00:00\",\"reference_no\":\"2022\\/05\\/0005\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Green&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"229\",\"adjustment_id\":\"10\",\"product_id\":\"67\",\"option_id\":\"578\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"230\",\"adjustment_id\":\"10\",\"product_id\":\"69\",\"option_id\":\"605\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"231\",\"adjustment_id\":\"10\",\"product_id\":\"71\",\"option_id\":\"631\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"232\",\"adjustment_id\":\"10\",\"product_id\":\"74\",\"option_id\":\"668\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"233\",\"adjustment_id\":\"10\",\"product_id\":\"79\",\"option_id\":\"739\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"234\",\"adjustment_id\":\"10\",\"product_id\":\"81\",\"option_id\":\"764\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"235\",\"adjustment_id\":\"10\",\"product_id\":\"83\",\"option_id\":\"792\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1354, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"6\",\"date\":\"2022-05-08 14:30:00\",\"reference_no\":\"2022\\/05\\/0006\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"196\",\"adjustment_id\":\"6\",\"product_id\":\"67\",\"option_id\":\"576\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"197\",\"adjustment_id\":\"6\",\"product_id\":\"69\",\"option_id\":\"603\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"198\",\"adjustment_id\":\"6\",\"product_id\":\"71\",\"option_id\":\"629\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1355, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"8\",\"date\":\"2022-05-08 14:05:00\",\"reference_no\":\"2022\\/05\\/0003\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"194\",\"adjustment_id\":\"8\",\"product_id\":\"77\",\"option_id\":\"710\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"195\",\"adjustment_id\":\"8\",\"product_id\":\"79\",\"option_id\":\"736\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1356, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0001\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Black&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"189\",\"adjustment_id\":\"1\",\"product_id\":\"67\",\"option_id\":\"583\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"190\",\"adjustment_id\":\"1\",\"product_id\":\"69\",\"option_id\":\"609\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"191\",\"adjustment_id\":\"1\",\"product_id\":\"71\",\"option_id\":\"635\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"192\",\"adjustment_id\":\"1\",\"product_id\":\"75\",\"option_id\":\"689\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"193\",\"adjustment_id\":\"1\",\"product_id\":\"77\",\"option_id\":\"716\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1357, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"7\",\"date\":\"2022-05-08 14:00:00\",\"reference_no\":\"2022\\/05\\/0002\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"187\",\"adjustment_id\":\"7\",\"product_id\":\"74\",\"option_id\":\"665\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"188\",\"adjustment_id\":\"7\",\"product_id\":\"75\",\"option_id\":\"682\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1358, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"9\",\"date\":\"2022-05-08 04:05:00\",\"reference_no\":\"2022\\/05\\/0004\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Red&nbsp;&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"185\",\"adjustment_id\":\"9\",\"product_id\":\"81\",\"option_id\":\"765\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null},{\"id\":\"186\",\"adjustment_id\":\"9\",\"product_id\":\"83\",\"option_id\":\"790\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1359, 'Quantity adjustment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"42\",\"date\":\"2022-05-03 09:10:00\",\"reference_no\":\"2022\\/05\\/0039\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Maroon Strip&lt;&sol;p&gt;\",\"attachment\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"260\",\"adjustment_id\":\"42\",\"product_id\":\"70\",\"option_id\":\"623\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":null,\"product_name\":null,\"image\":null,\"details\":null,\"variant\":null}]}', '2022-09-28 12:57:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1360, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"169\",\"date\":\"2022-09-28 13:05:00\",\"reference_no\":\"1234\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"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\":\"242cee8494759cc286953a23583054097f2f02e833f3d8e343ead7fb416cb4de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"329\",\"sale_id\":\"169\",\"product_id\":\"4294967295\",\"product_code\":\"eee\",\"product_name\":\"eee\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"30.0000\",\"unit_price\":\"30.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"30.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-28 13:17:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1361, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"168\",\"date\":\"2022-09-28 13:01:00\",\"reference_no\":\"SALE2022\\/09\\/0057\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"50.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"30.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\":\"9f33989452c4c056241e035d0e792b8850898c8b3fde9546d5adeededcc0ba47\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"328\",\"sale_id\":\"168\",\"product_id\":\"4294967295\",\"product_code\":\"Seedlings\",\"product_name\":\"Seedlings\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-28 13:17:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1362, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"170\",\"date\":\"2022-09-28 13:11:33\",\"reference_no\":\"SALE\\/POS2022\\/09\\/0109\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"46.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"46.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\":\"ef7445d0a8bb76f415c43474d151ae17966ded0447e5478d3359e0bb3361588d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"330\",\"sale_id\":\"170\",\"product_id\":\"4294967295\",\"product_code\":\"ww\",\"product_name\":\"ww\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"23.0000\",\"unit_price\":\"23.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"46.0000\",\"serial_no\":\"\",\"real_unit_price\":\"23.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-28 13:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1363, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"171\",\"date\":\"2022-09-28 13:26:00\",\"reference_no\":\"SALE2022\\/09\\/0058\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1035.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1035.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"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\":\"673baf7510d9b873d2b41e5ff61b1f0beb60a7ea1f29a3589e21c8a3388af853\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"331\",\"sale_id\":\"171\",\"product_id\":\"4294967295\",\"product_code\":\"ee\",\"product_name\":\"ewwe\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"45.0000\",\"unit_price\":\"45.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1035.0000\",\"serial_no\":\"\",\"real_unit_price\":\"45.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"23.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-28 13:29:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1364, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"952\",\"code\":\"11720628\",\"name\":\"tomato royal705\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"11720628\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1365, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"957\",\"code\":\"24694035\",\"name\":\"melon sukari f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"38\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"24694035\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1366, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"953\",\"code\":\"28833838\",\"name\":\"capsicum s.bell f1\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"28833838\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1367, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"950\",\"code\":\"44150313\",\"name\":\"Tomato Bwts F1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"44150313\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1368, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"949\",\"code\":\"50956262\",\"name\":\"Tomato Ansal F1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"50956262\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1369, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"958\",\"code\":\"59785009\",\"name\":\"Pawpaw malkia F1\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"59785009\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1370, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"959\",\"code\":\"66171982\",\"name\":\"queen f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"66171982\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1371, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"955\",\"code\":\"81641084\",\"name\":\"capsicum Maxibell f1\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"81641084\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1372, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"960\",\"code\":\"88906214\",\"name\":\"Kiboko f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"88906214\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1373, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"954\",\"code\":\"93591242\",\"name\":\"pawpaw vegaf1\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"93591242\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1374, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"951\",\"code\":\"98225742\",\"name\":\"Tomato Royal 705\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1350.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"98225742\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1375, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"956\",\"code\":\"99273379\",\"name\":\"Tomato Max F1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"99273379\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:47:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1376, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"973\",\"code\":\"72806295\",\"name\":\"tt\",\"unit\":\"5\",\"cost\":\"10.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"72806295\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-09-28 15:57:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1377, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"176\",\"date\":\"2022-09-22 10:45:00\",\"reference_no\":\"SALE2022\\/09\\/0063\",\"customer_id\":\"190\",\"customer\":\"Charles Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-09-30 10:48:50\",\"total_items\":\"11\",\"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\":\"492279ac2bc4e139b9a8a524cbd7a8528d5d6b9b5180f195129fd68c79c744f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"338\",\"sale_id\":\"176\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-09-30 15:02:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1378, 'Product is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"1004\",\"code\":\"18703323\",\"name\":\"malkia f1\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"18703323\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-05 14:32:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1379, 'Product is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"1019\",\"code\":\"92967141\",\"name\":\"ansal f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"92967141\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-07 12:30:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1380, 'Product is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"1041\",\"code\":\"23400711\",\"name\":\"s. bell pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"23400711\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-07 12:31:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1381, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"282\",\"date\":\"2022-10-07 12:31:00\",\"reference_no\":\"1865\",\"customer_id\":\"261\",\"customer\":\"Francis Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-07 12:52:42\",\"total_items\":\"28\",\"pos\":\"0\",\"paid\":\"17920.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\":\"427050a9423e641b3b29b894597a721ce660889e0d7b84d6edf8039ac54e8e42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"520\",\"sale_id\":\"282\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-07 12:54:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1382, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"296\",\"date\":\"2022-10-11 15:38:00\",\"reference_no\":\"SALE0091\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 15:46:30\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5800.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\":\"c554c8071750726e065586240be11c552dc773e4d3f36e4aa8c9a259bf367a7d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"548\",\"sale_id\":\"296\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"549\",\"sale_id\":\"296\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-10-11 15:47:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1383, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"205\",\"date\":\"2022-09-12 14:05:00\",\"reference_no\":\"SALE162482683238\",\"customer_id\":\"156\",\"customer\":\"peter mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6615.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6615.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:55:16\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"13200.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\":\"4421078cb135981618266fd51e0c2f00274746a672c54fbf831e877fa1531e5e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"582\",\"sale_id\":\"205\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"583\",\"sale_id\":\"205\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-11 16:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1384, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"216\",\"date\":\"2022-09-14 14:25:00\",\"reference_no\":\"SALE513774239233\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3965.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\":\"3ef0e703cf55969a5d73039a23a7a5efb707a86f1709ef9d67810c53b60cf278\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"396\",\"sale_id\":\"216\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-11 17:03:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1385, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"276\",\"date\":\"2022-09-27 17:24:00\",\"reference_no\":\"SALE760185066128\",\"customer_id\":\"136\",\"customer\":\"Simon\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"9000.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\":\"eb0e70b4d6a35f2f5af8410f110f06dbd6855a65cb870e8dc92527deb553e34d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"498\",\"sale_id\":\"276\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-10-12 15:49:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1386, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"294\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"David gitari\",\"company\":\"David gitari\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0722628294\",\"email\":\"dad@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-10-12 16:25:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1387, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":false}', '2022-10-12 16:25:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1388, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"296\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"James Muthike\",\"company\":\"James Muthike\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0748145809\",\"email\":\"jams@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-10-13 09:23:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1389, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"278\",\"date\":\"2022-10-03 08:00:00\",\"reference_no\":\"1838\",\"customer_id\":\"254\",\"customer\":\"Jackson mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-14 08:55:38\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"22000.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\":\"dff3725acf4850af26ccb556326f1f30ef39a7149aaf4d2c2febb947d3d1d539\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2022-10-14 09:02:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1390, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"211\",\"date\":\"2022-09-14 14:20:00\",\"reference_no\":\"SALE255967196370\",\"customer_id\":\"221\",\"customer\":\"Samuel Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"492b9bfdda494279183fd1059c36100a32fa698872824282c1c46f4bf8f0730f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"390\",\"sale_id\":\"211\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-14 09:40:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1391, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"212\",\"date\":\"2022-09-12 14:20:00\",\"reference_no\":\"SALE859266132800\",\"customer_id\":\"141\",\"customer\":\"Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16065.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16065.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"26\",\"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\":\"5955bc50c1b83c0f92d35b1ccdee946ab258773733b515074703ea7b37a5bbff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"391\",\"sale_id\":\"212\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13230.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"21.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"392\",\"sale_id\":\"212\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-17 09:56:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1392, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"232\",\"date\":\"2022-09-15 15:10:00\",\"reference_no\":\"SALE852014490190\",\"customer_id\":\"141\",\"customer\":\"Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40005.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"40005.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-17 10:08:02\",\"total_items\":\"64\",\"pos\":\"0\",\"paid\":\"43690.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\":\"ec49acb1903d818d5fea276e53d244c94297f026a1f7c09af7be154988287e34\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"666\",\"sale_id\":\"232\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11970.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"667\",\"sale_id\":\"232\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"668\",\"sale_id\":\"232\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-17 10:14:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1393, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"162\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Macharia\",\"company\":\"Macharia\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0722910119\",\"email\":\"mac@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-10-17 10:15:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1394, 'Product is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"1036\",\"code\":\"86699062\",\"name\":\"zawadi pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-25.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"86699062\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-17 11:26:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1395, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"241\",\"date\":\"2022-10-03 15:25:00\",\"reference_no\":\"SALE419527020988\",\"customer_id\":\"152\",\"customer\":\"Murimi Gitungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"11340.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\":\"80bf50d0966e91678968f6ee34e7f14a702389532e7b15e0674c64cafea0e7c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"424\",\"sale_id\":\"241\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"425\",\"sale_id\":\"241\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"426\",\"sale_id\":\"241\",\"product_id\":\"1021\",\"product_code\":\"04279993\",\"product_name\":\"tom 4420\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-17 12:11:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1396, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"266\",\"date\":\"2022-10-05 16:39:00\",\"reference_no\":\"SALE168052758146\",\"customer_id\":\"255\",\"customer\":\"Gladys Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"1600.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\":\"657c2db83a2dc98b8e6ef8dc26403cfed12362952dadfead0666de495ab09d4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"485\",\"sale_id\":\"266\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"400.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"400.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-10-17 16:27:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1397, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"218\",\"date\":\"2022-09-17 14:30:00\",\"reference_no\":\"SALE396454840873\",\"customer_id\":\"172\",\"customer\":\"Antony Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"a353f947581197cc395a9756d9bcbd8a6f3d383a68b3051db2d77d3cf68623d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"398\",\"sale_id\":\"218\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-17 16:32:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1398, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"201\",\"date\":\"2022-09-17 09:00:00\",\"reference_no\":\"SALE2022\\/10\\/0088\",\"customer_id\":\"220\",\"customer\":\"James Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"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\":\"e5d087cd463a1c060412dbaf76dfb1c81b02f2d7400ee962026cf41e7a2d1f70\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"373\",\"sale_id\":\"201\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"374\",\"sale_id\":\"201\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-18 15:46:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1399, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"197\",\"date\":\"2022-09-20 08:55:00\",\"reference_no\":\"SALE2022\\/10\\/0084\",\"customer_id\":\"185\",\"customer\":\"David kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8820.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8820.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"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\":\"967c635fd19cc0176cc8503225a51705bba8360841b4e42d6eea77cd008e3973\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"368\",\"sale_id\":\"197\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8820.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"14.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-18 16:21:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1400, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"344\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"David Mathu\",\"company\":\"David Mathu\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0113900335\",\"email\":\"mat@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-10-21 12:22:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1401, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"389\",\"date\":\"2022-10-19 12:45:00\",\"reference_no\":\"1671\",\"customer_id\":\"218\",\"customer\":\"Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-21 12:50:14\",\"total_items\":\"505\",\"pos\":\"0\",\"paid\":\"8500.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\":\"44213de3e67417dc4e591596075e118881b4580be6f747737dbad8ed56cfbc64\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"735\",\"sale_id\":\"389\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"736\",\"sale_id\":\"389\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-10-21 12:50:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1402, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"391\",\"date\":\"2022-10-19 08:40:00\",\"reference_no\":\"1672\",\"customer_id\":\"253\",\"customer\":\"Janifer Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"1200.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\":\"ce24681aaff6151853a56249f567c9c148efd509e2b9407282a7e35b8d16c76a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"739\",\"sale_id\":\"391\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2022-10-21 12:54:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1403, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"249\",\"date\":\"2022-09-20 15:35:00\",\"reference_no\":\"SALE021502093616\",\"customer_id\":\"182\",\"customer\":\"Peter maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"4720c4df9e2ac5fa7d6e7708bc5d74120a21137ba3ea718800a642d41c4988b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"435\",\"sale_id\":\"249\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"315.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"436\",\"sale_id\":\"249\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"437\",\"sale_id\":\"249\",\"product_id\":\"1026\",\"product_code\":\"41165230\",\"product_name\":\"long purple\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"438\",\"sale_id\":\"249\",\"product_id\":\"1025\",\"product_code\":\"49678906\",\"product_name\":\"dynasty\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-21 16:29:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1404, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"230\",\"date\":\"2022-09-07 14:50:00\",\"reference_no\":\"SALE609217653168\",\"customer_id\":\"143\",\"customer\":\"Josphat Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"46f5bcc02baad43716bcced1671678bc50d85fa1fe8b3d6240ce0f114b2ac584\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"410\",\"sale_id\":\"230\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-10-21 16:46:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1405, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"363\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Peter Njuguna\",\"company\":\"Peter Njuguna\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0768104051\",\"email\":\"nju@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-10-22 12:08:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1406, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":false}', '2022-10-22 12:09:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1407, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"330\",\"date\":\"2022-10-11 15:50:00\",\"reference_no\":\"1608\",\"customer_id\":\"303\",\"customer\":\"Peter Njuguna\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"dd0319c13aeeac7bee0e151b8613845281e2f21cdfdbf5c0a1ef3fb60994522a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"612\",\"sale_id\":\"330\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-10-22 12:09:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1408, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"187\",\"date\":\"2022-09-24 14:25:00\",\"reference_no\":\"SALE2022\\/09\\/0074\",\"customer_id\":\"194\",\"customer\":\"Peter Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"2d6449ee864fac48e3d68adec54967bb8a663b8ee4d12e713e5b68698a6984c6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"355\",\"sale_id\":\"187\",\"product_id\":\"989\",\"product_code\":\"50584967\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-25 11:47:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1409, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"200\",\"date\":\"2022-09-19 08:55:00\",\"reference_no\":\"SALE2022\\/10\\/0087\",\"customer_id\":\"180\",\"customer\":\"Daniel shikuku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26145.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26145.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"42\",\"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\":\"0f2b5dd6b9f8cb52e6e505fced6328055da0a4f1f6ed369a91384d2c1bf80de6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"371\",\"sale_id\":\"200\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"372\",\"sale_id\":\"200\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-25 12:11:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1410, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"185\",\"date\":\"2022-09-24 12:25:00\",\"reference_no\":\"SALE2022\\/09\\/0072\",\"customer_id\":\"196\",\"customer\":\"wilson boma\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34965.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34965.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"55\",\"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\":\"d3c76846f964fe791490bb678d1648faddec6546173ce14271913a940269b5e9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"351\",\"sale_id\":\"185\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"352\",\"sale_id\":\"185\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"353\",\"sale_id\":\"185\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"31.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"31.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-25 15:28:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1411, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"189\",\"date\":\"2022-09-24 14:50:00\",\"reference_no\":\"SALE2022\\/09\\/0076\",\"customer_id\":\"192\",\"customer\":\"Joseph Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"84d409c840e802b0142e86081f81c83536b867d758d35f91ecd0ecbe5373248a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"357\",\"sale_id\":\"189\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-25 15:33:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1412, 'Payment is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"390\",\"date\":\"2022-10-25 16:15:00\",\"sale_id\":\"263\",\"return_id\":null,\"purchase_id\":null,\"reference_no\":\"1727\",\"transaction_id\":null,\"paid_by\":\"cash\",\"cheque_no\":\"\",\"cc_no\":\"\",\"cc_holder\":\"\",\"cc_month\":\"\",\"cc_year\":\"\",\"cc_type\":\"Visa\",\"amount\":\"20.0000\",\"currency\":null,\"created_by\":\"9\",\"attachment\":null,\"type\":\"received\",\"note\":\"\",\"pos_paid\":\"0.0000\",\"pos_balance\":\"0.0000\",\"approval_code\":null}}', '2022-10-26 16:19:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1413, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"214\",\"date\":\"2022-09-14 14:25:00\",\"reference_no\":\"SALE396466211198\",\"customer_id\":\"164\",\"customer\":\"John waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"5bdc8050f44714d4054022be22b8e59ef1a34b16ac378cab07d7651d7ad30607\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"394\",\"sale_id\":\"214\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-29 10:02:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1414, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"196\",\"date\":\"2022-09-20 08:30:00\",\"reference_no\":\"SALE2022\\/10\\/0083\",\"customer_id\":\"126\",\"customer\":\"Julias Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"945.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"945.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"ecd3878e7f05025a4fc5b40d31fd0c80f840a0519d76449d1c16f28942e0ae34\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"367\",\"sale_id\":\"196\",\"product_id\":\"990\",\"product_code\":\"50761714\",\"product_name\":\"tersal\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-31 16:03:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1415, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"246\",\"date\":\"2022-09-14 15:35:00\",\"reference_no\":\"SALE298112814471\",\"customer_id\":\"126\",\"customer\":\"Julias Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"53e2988717aeb5db4636b22e8c61c6e18f6ec6c8e6ddfa33f1d412dc576de2d8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"432\",\"sale_id\":\"246\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-31 16:03:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1416, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"250\",\"date\":\"2022-09-29 15:45:00\",\"reference_no\":\"SALE647597163822\",\"customer_id\":\"126\",\"customer\":\"Julias Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"ac8f895682f3b7f7f61fce53f0a42ebc4c7f48e5a8f09ece61c8262fbbc338e8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"439\",\"sale_id\":\"250\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-10-31 16:03:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1417, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"198\",\"date\":\"2022-09-20 08:55:00\",\"reference_no\":\"SALE2022\\/10\\/0085\",\"customer_id\":\"183\",\"customer\":\"Eliud Miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6400.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\":\"fea62a25816dd6fd789b8951c390221fdd72d34fe7e5da5255a3ebdd999959f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"369\",\"sale_id\":\"198\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-02 12:46:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1418, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"464\",\"date\":\"2022-11-01 12:45:00\",\"reference_no\":\"1774\",\"customer_id\":\"183\",\"customer\":\"Eliud Miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"7b17aced613913bf63084b59b642afec16d3256df5b16c6ed8cb14683a96350c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"865\",\"sale_id\":\"464\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-02 12:48:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1419, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"258\",\"date\":\"2022-09-30 15:55:00\",\"reference_no\":\"SALE289204923813\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"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\":\"dafaf0f90fd95caa649d196f0acbf5817e83128689f72d63325b3783da46a9b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"452\",\"sale_id\":\"258\",\"product_id\":\"985\",\"product_code\":\"62358330\",\"product_name\":\"rafano       \",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"453\",\"sale_id\":\"258\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"454\",\"sale_id\":\"258\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-03 10:59:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1420, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"424\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Henry Muiruri\",\"company\":\"Henry Muiruri\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0116755567\",\"email\":\"hn@mail.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-11-03 11:08:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1421, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":false}', '2022-11-03 11:09:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1422, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"444\",\"date\":\"2022-10-28 14:55:00\",\"reference_no\":\"1749\",\"customer_id\":\"398\",\"customer\":\"John Kabui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-29 10:06:23\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2500.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\":\"44a15005f476af9edd5fa1d37b2d178566bb24842809d0aff443ae0d32b5ae86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"834\",\"sale_id\":\"444\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-03 12:19:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1423, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"499\",\"date\":\"2022-11-03 13:05:00\",\"reference_no\":\"SALE0100\",\"customer_id\":\"214\",\"customer\":\"Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"51650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"51650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"49\",\"pos\":\"0\",\"paid\":\"47250.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\":\"41f42dd47665d178beb51fb555c89896d3d2475d6e70fa536000834fc7e9e416\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"919\",\"sale_id\":\"499\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"45.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"920\",\"sale_id\":\"499\",\"product_id\":\"4294967295\",\"product_code\":\"royal\",\"product_name\":\"royal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"4400.0000\",\"unit_price\":\"4400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"921\",\"sale_id\":\"499\",\"product_id\":\"4294967295\",\"product_code\":\"ansal\",\"product_name\":\"ansal seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"922\",\"sale_id\":\"499\",\"product_id\":\"4294967295\",\"product_code\":\"nouvelle\",\"product_name\":\"nouvelle seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"4300.0000\",\"unit_price\":\"4300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4300.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-03 15:09:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1424, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"376\",\"date\":\"2022-10-17 15:35:00\",\"reference_no\":\"1656\",\"customer_id\":\"123\",\"customer\":\"Zablon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-18 15:42:25\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"b45a7117559eafd674ff40fe3a88b69fb06d6af72b207570503ebeefe8f3ca7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"704\",\"sale_id\":\"376\",\"product_id\":\"1045\",\"product_code\":\"50597015\",\"product_name\":\"Nova f1 seeedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-03 16:25:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1425, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"519\",\"date\":\"2022-11-04 11:01:00\",\"reference_no\":\"SALE0101\",\"customer_id\":\"442\",\"customer\":\"Patrick Mundia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3750.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\":\"c96e990beac15fe3682ff831aa0503dd5344d0a5cd1c047798594abe54d57977\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"962\",\"sale_id\":\"519\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-04 11:02:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1426, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"194\",\"date\":\"2022-09-19 08:30:00\",\"reference_no\":\"SALE2022\\/10\\/0081\",\"customer_id\":\"149\",\"customer\":\"Murimi Agrovet\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"32\",\"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\":\"115af5044cae48e50e3345cae3c29f17e242df059eabac81ec91ae92509a5098\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"365\",\"sale_id\":\"194\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"32.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-04 12:09:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1427, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"238\",\"date\":\"2022-09-09 15:20:00\",\"reference_no\":\"SALE341735861475\",\"customer_id\":\"149\",\"customer\":\"Murimi Agrovet\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19840.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19840.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"31\",\"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\":\"87953aca2fd02b9e3cdeec7d0a5d987bf7662bf1e5e25081b6c99142e0c49366\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"421\",\"sale_id\":\"238\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"31.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"31.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-04 12:23:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1428, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"542\",\"date\":\"2022-11-04 16:18:00\",\"reference_no\":\"2024\",\"customer_id\":\"457\",\"customer\":\"Margret Wairimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4265.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4265.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"191\",\"pos\":\"0\",\"paid\":\"4265.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\":\"5209b795f518cc312cf7c971306175e3f54ff670aa6851441d7bc88fb1fe6ad3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1010\",\"sale_id\":\"542\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1011\",\"sale_id\":\"542\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1012\",\"sale_id\":\"542\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1013\",\"sale_id\":\"542\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1014\",\"sale_id\":\"542\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1015\",\"sale_id\":\"542\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-04 16:21:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1429, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"190\",\"date\":\"2022-09-24 14:55:00\",\"reference_no\":\"SALE2022\\/09\\/0077\",\"customer_id\":\"191\",\"customer\":\"Geoffrey Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"4bc30526e33697f991ec14fb16da0de54746f40af6fcbc3648ebf2a3e9c98758\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"358\",\"sale_id\":\"190\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-04 16:24:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1430, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"192\",\"date\":\"2022-09-21 15:00:00\",\"reference_no\":\"SALE2022\\/09\\/0079\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12285.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12285.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"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\":\"275747e746f3c5ce8a465a719c7e6d6ee22c33906306a76de53f410209f82900\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"361\",\"sale_id\":\"192\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"15.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9765.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"15.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"362\",\"sale_id\":\"192\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-04 16:25:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1431, 'Product is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"1003\",\"code\":\"10491111\",\"name\":\"vega f1\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"10491111\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-11-09 12:04:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1432, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"260\",\"date\":\"2022-09-30 16:00:00\",\"reference_no\":\"SALE335054494333\",\"customer_id\":\"208\",\"customer\":\"Benard muraguri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2650.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\":\"eb42db0220830735e18647d04a968111db246a1b053c654ddc1a00f43bb5e843\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"456\",\"sale_id\":\"260\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-11 10:32:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1433, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"620\",\"date\":\"2022-11-15 12:00:00\",\"reference_no\":\"2122\",\"customer_id\":\"516\",\"customer\":\"Joel weru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"c56f10fa6f2476c62ea23848d0720f37258ad1f0e76f2b7eb4a61650338c5dcd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1155\",\"sale_id\":\"620\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-11-21 15:37:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1434, 'Payment is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"191\",\"date\":\"2022-10-03 17:12:00\",\"sale_id\":\"261\",\"return_id\":null,\"purchase_id\":null,\"reference_no\":\"IPAY353732084792\",\"transaction_id\":null,\"paid_by\":\"cash\",\"cheque_no\":\"\",\"cc_no\":\"\",\"cc_holder\":\"\",\"cc_month\":\"\",\"cc_year\":\"\",\"cc_type\":\"Visa\",\"amount\":\"2000.0000\",\"currency\":null,\"created_by\":\"9\",\"attachment\":null,\"type\":\"received\",\"note\":\"\",\"pos_paid\":\"0.0000\",\"pos_balance\":\"0.0000\",\"approval_code\":null}}', '2022-11-21 16:12:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1435, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"635\",\"date\":\"2022-11-16 16:10:00\",\"reference_no\":\"2132\",\"customer_id\":\"209\",\"customer\":\"George kibicho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d5f8f447f53d5f043863b03800484471cf270b9243290a2f86c0db2e623eb250\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1172\",\"sale_id\":\"635\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-21 16:15:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1436, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"685\",\"date\":\"2022-10-19 11:45:00\",\"reference_no\":\"1684\",\"customer_id\":\"144\",\"customer\":\"Stephen Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"2000.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\":\"0ba6304e6e155972418f3b05c471b7ff16aaa6faeaa6156eb63118dfad613a64\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1237\",\"sale_id\":\"685\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1238\",\"sale_id\":\"685\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-25 11:51:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1437, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"688\",\"date\":\"2022-10-22 11:55:00\",\"reference_no\":\"SALE0105\",\"customer_id\":\"350\",\"customer\":\"Tirus Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6900.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\":\"2743c4d285350063e985b01aa39ca0641089052135a2c4f9011ec286ba8ca327\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1242\",\"sale_id\":\"688\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-11-25 12:15:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1438, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"742\",\"date\":\"2022-12-01 12:06:00\",\"reference_no\":\"2249\",\"customer_id\":\"452\",\"customer\":\"Gerald Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2000.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\":\"b303343033019dcff43026f6125a8d315afe5fe929afff473de495d9fc822cdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1316\",\"sale_id\":\"742\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-01 12:08:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1439, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"605\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"David Muchoki\",\"company\":\"David Muchoki\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0707419823\",\"email\":\"\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-12-05 11:35:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1440, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"745\",\"date\":\"2022-12-01 10:40:00\",\"reference_no\":\"2250\",\"customer_id\":\"220\",\"customer\":\"James Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1880.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1880.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1850.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\":\"15efc11c1396431e548b15d0c6ec7605b1a086958643b03c50638533c159ad39\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1319\",\"sale_id\":\"745\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1320\",\"sale_id\":\"745\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-06 10:44:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1441, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"753\",\"date\":\"2022-12-02 06:25:00\",\"reference_no\":\"2309\",\"customer_id\":\"641\",\"customer\":\"Gideon Kisini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"22000.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\":\"5dc35ecda91aa3062520a4195c04660d49b0b400507a0069d9e3c03b72da3fd9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1333\",\"sale_id\":\"753\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-07 11:27:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1442, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"818\",\"date\":\"2022-12-08 11:55:00\",\"reference_no\":\"2288\",\"customer_id\":\"594\",\"customer\":\"Robert Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10830.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-10 11:59:15\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3900.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\":\"700b798ce5ce225d5c7655b0ea4cddaa49e768b489ea2e15fe1b525ce5bf5c4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1442\",\"sale_id\":\"818\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"nova\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3900.0000\",\"unit_price\":\"3900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1443\",\"sale_id\":\"818\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-10 12:01:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1443, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"820\",\"date\":\"2022-12-08 12:00:00\",\"reference_no\":\"2288\",\"customer_id\":\"594\",\"customer\":\"Robert Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10830.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3900.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\":\"e7b6d2bb6972cff7a9c26de03e557bfc6e941d76d29108715f8b7bc76dd721ea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1445\",\"sale_id\":\"820\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1446\",\"sale_id\":\"820\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"nova seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3900.0000\",\"unit_price\":\"3900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-10 12:03:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1444, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"858\",\"date\":\"2022-11-24 10:55:00\",\"reference_no\":\"SALE0108\",\"customer_id\":\"160\",\"customer\":\"patrick muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3000.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\":\"bc74cd56b15a814ffc000055cdfc215a62fe5185afac75ec160f64f7a61cb459\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1512\",\"sale_id\":\"858\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-12-14 11:00:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1445, 'Customer is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"702\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"stephen muthee\",\"company\":\"stephen muthee\",\"vat_no\":\"\",\"address\":\"Kirinyaga\",\"city\":\"Kirinyaga\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"\",\"phone\":\"0713274683\",\"email\":\"\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":null,\"payment_term\":\"0\",\"logo\":\"logo.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":\"1\",\"price_group_name\":\"Default\",\"gst_no\":\"\"}}', '2022-12-17 08:20:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1446, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"889\",\"date\":\"2022-12-09 10:45:00\",\"reference_no\":\"SALE0111\",\"customer_id\":\"550\",\"customer\":\"Antony Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2500.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\":\"0b3be6e3634ed07cd0e08b7cf71e4b780072d26adffa6d8272f8161c2e1d1588\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1573\",\"sale_id\":\"889\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2022-12-17 10:48:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1447, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"894\",\"date\":\"2022-12-17 10:30:00\",\"reference_no\":\"2383\",\"customer_id\":\"519\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"7410.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\":\"a4e8cdca5a0a661973cf550a8d0f90a7db96f519a50c6027218ff95325b8ae60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1579\",\"sale_id\":\"894\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1580\",\"sale_id\":\"894\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ranger seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-19 10:36:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1448, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"384\",\"date\":\"2022-10-18 16:26:00\",\"reference_no\":\"1666\",\"customer_id\":\"340\",\"customer\":\"Jane Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2640.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2640.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"54\",\"pos\":\"0\",\"paid\":\"3000.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\":\"1d42f0f4efe9ea91a8b2271a1eb53d70e5de969407bb3245906d15a9f0096c6d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"716\",\"sale_id\":\"384\",\"product_id\":\"1060\",\"product_code\":\"66451514\",\"product_name\":\"f2 capsicum\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"717\",\"sale_id\":\"384\",\"product_id\":\"4294967295\",\"product_code\":\"demon\",\"product_name\":\" demon f1\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"1.6000\",\"unit_price\":\"1.6000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.6000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"50.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-29 10:12:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1449, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"993\",\"date\":\"2022-12-30 09:50:00\",\"reference_no\":\"2763\",\"customer_id\":\"716\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"14230.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\":\"be4b31b6332bc687f855995d8fc7c2745746a14162fb68599ad7dceae2dc645a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1736\",\"sale_id\":\"993\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1737\",\"sale_id\":\"993\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-31 09:52:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1450, 'Sale is being deleted by allan (User Id: 9)', '{\"model\":{\"id\":\"994\",\"date\":\"2022-12-30 09:50:00\",\"reference_no\":\"2763\",\"customer_id\":\"519\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"14200.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\":\"bc674a5be3bc7bbd21921cb294e4c7f0c3f3d908658a33188eafdd87d639b258\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1738\",\"sale_id\":\"994\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1739\",\"sale_id\":\"994\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-12-31 09:53:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1451, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1005\",\"date\":\"2022-12-31 11:38:00\",\"reference_no\":\"2776\",\"customer_id\":\"397\",\"customer\":\"Samson Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2800.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\":\"eb4aee40428c4f79adc4dfe1db42331fa8960a0b61183deeb06345167dd591cc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1754\",\"sale_id\":\"1005\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1452, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1004\",\"date\":\"2022-12-31 11:21:00\",\"reference_no\":\"2775\",\"customer_id\":\"156\",\"customer\":\"peter mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1200.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\":\"b0f2009dda58cf978b2b63a30c7214c87c410fee62f0ef23d9b27dbebb475c4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1753\",\"sale_id\":\"1004\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1453, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1003\",\"date\":\"2022-12-31 11:15:00\",\"reference_no\":\"2772\",\"customer_id\":\"772\",\"customer\":\"Charles karungaru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2000.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\":\"2905c22883d71624c099eefbd89c1bd5bc1218b65af8591ad3481105074728bc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1751\",\"sale_id\":\"1003\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1454, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1002\",\"date\":\"2022-12-30 10:45:00\",\"reference_no\":\"2770\",\"customer_id\":\"771\",\"customer\":\"Patrick Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"af977ab15c77d9a1b4d6750f44c7f07438dec9436b35a7bd8b9eb18e67b0efdd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1749\",\"sale_id\":\"1002\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1750\",\"sale_id\":\"1002\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1455, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1001\",\"date\":\"2022-12-30 10:40:00\",\"reference_no\":\"2769\",\"customer_id\":\"330\",\"customer\":\"Lilian Wanja Gathaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"d6c68ad106e00c1084bb9c49bcf451c890dfeda7a2d3345c4f53a5dcfa2a8d03\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1748\",\"sale_id\":\"1001\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1456, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1000\",\"date\":\"2022-12-30 10:10:00\",\"reference_no\":\"SALE0113\",\"customer_id\":\"770\",\"customer\":\"Charles Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"40000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"20000.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\":\"04f3778b6e0c5f21c7232fdc1a2829109575ac7914bb8a5a9c52f3c292dab46f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1747\",\"sale_id\":\"1000\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1457, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"999\",\"date\":\"2022-12-30 10:05:00\",\"reference_no\":\"2767\",\"customer_id\":\"238\",\"customer\":\"joe ngoroi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3465.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\":\"bb12fe0000aadb05f90d2d87458d83506d727f57b41bd32b2adc31c74288a8f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1746\",\"sale_id\":\"999\",\"product_id\":\"1065\",\"product_code\":\"85748817\",\"product_name\":\"Bigrock\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1458, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"998\",\"date\":\"2022-12-30 10:05:00\",\"reference_no\":\"2766\",\"customer_id\":\"769\",\"customer\":\"john Kiritu ndungi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"3500.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\":\"066eb111081bdf57bc1226daa107073bfbe05fa3dc92f9a450fe9174e4a77479\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1745\",\"sale_id\":\"998\",\"product_id\":\"962\",\"product_code\":\"24694035\",\"product_name\":\"melon sukari f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1459, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"997\",\"date\":\"2022-12-30 10:00:00\",\"reference_no\":\"2765\",\"customer_id\":\"768\",\"customer\":\"Dishon munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"135.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"135.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"135.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\":\"e8880a91eca31163b8b4bf869f8a91bacb01c47a37bea1bda52257a51ee5ecd6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1743\",\"sale_id\":\"997\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"35.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1744\",\"sale_id\":\"997\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1460, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"996\",\"date\":\"2022-12-30 09:50:00\",\"reference_no\":\"2764\",\"customer_id\":\"763\",\"customer\":\"Elijah muguro\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"400.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\":\"f5dcd3226f51eb0c8f85da9ed38694beed0a925917ff9f81dd9aaf5b916e776d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1742\",\"sale_id\":\"996\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1461, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"995\",\"date\":\"2022-12-30 09:50:00\",\"reference_no\":\"2763\",\"customer_id\":\"603\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"14200.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\":\"181c0d20026e450748f59e3ceff8a520d7a61947c8b040328e9f05a13d82f120\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1740\",\"sale_id\":\"995\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1741\",\"sale_id\":\"995\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1462, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"989\",\"date\":\"2022-12-29 13:00:00\",\"reference_no\":\"2759\",\"customer_id\":\"764\",\"customer\":\"John Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"73b93ec767d33581383d86d309e660c78c18a28bc7eff72247e72a346e38c4fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1730\",\"sale_id\":\"989\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1463, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"988\",\"date\":\"2022-12-29 12:50:00\",\"reference_no\":\"2758\",\"customer_id\":\"763\",\"customer\":\"Elijah muguro\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"67fdfe230f7626ed38bac08144a7087e12a2075e7390f3a69bcc18c1b848b7ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1729\",\"sale_id\":\"988\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1464, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"987\",\"date\":\"2022-12-29 11:35:00\",\"reference_no\":\"2757\",\"customer_id\":\"751\",\"customer\":\"Wandeto\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"03e4b9cafcb599ef26ffed5c8d2236e3fa5acdeea6a7a253c9752b944b29d107\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1728\",\"sale_id\":\"987\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1465, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"992\",\"date\":\"2022-12-29 09:45:00\",\"reference_no\":\"2762\",\"customer_id\":\"767\",\"customer\":\"Charity Wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"450.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\":\"e02e86fe26d0e6fd2c17f2c05011c5cb2e21a7bc5267d26f9abfb09f2b990ce4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1735\",\"sale_id\":\"992\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1466, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"991\",\"date\":\"2022-12-29 09:40:00\",\"reference_no\":\"2761\",\"customer_id\":\"766\",\"customer\":\"peter Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"62386d827f10b98dc996bda43c3f545a91ca2246d4d6184a34e1fb796bd104ea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1734\",\"sale_id\":\"991\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1467, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"990\",\"date\":\"2022-12-29 09:30:00\",\"reference_no\":\"2760\",\"customer_id\":\"765\",\"customer\":\"Maina Ndegwa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1575.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1575.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-31 09:40:10\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"2508b0656518a4926b79a2c60e15c9bca21f00a6ba17d9615b522d6912ed8019\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1733\",\"sale_id\":\"990\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1468, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"986\",\"date\":\"2022-12-28 11:00:00\",\"reference_no\":\"2753\",\"customer_id\":\"762\",\"customer\":\"James Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"25500.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\":\"a0e7a899c64c7c56ecaef0272d873553a78bef00abddede6e70f061d5edc7d5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1719\",\"sale_id\":\"986\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"27200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1469, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"985\",\"date\":\"2022-12-28 10:50:00\",\"reference_no\":\"2500\",\"customer_id\":\"761\",\"customer\":\"Nelson Meta mahinda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"4000.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\":\"0611f7eb0c28d7557000733239bb44b34c2e27673545cbbd0b40c7b1e6d0404e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1718\",\"sale_id\":\"985\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1470, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"984\",\"date\":\"2022-12-28 10:35:00\",\"reference_no\":\"2497\",\"customer_id\":\"259\",\"customer\":\"Eliud Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"51\",\"pos\":\"0\",\"paid\":\"1800.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\":\"c522a828854718637fcbd53abfd7e1f3855833e46f0aab7a8d385b4353fc49a6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1712\",\"sale_id\":\"984\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1713\",\"sale_id\":\"984\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1471, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"983\",\"date\":\"2022-12-28 10:35:00\",\"reference_no\":\"2496\",\"customer_id\":\"760\",\"customer\":\"Joseph Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"800.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\":\"e2a5b476f90bc2c10cba998d214f73d05d164894329177a8b87520caa63d2356\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1711\",\"sale_id\":\"983\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1472, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"982\",\"date\":\"2022-12-28 10:30:00\",\"reference_no\":\"2495\",\"customer_id\":\"759\",\"customer\":\"Samuel Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"493a11de75a3003f722ef3d321da968dbb96a4d26b133006b371f92eaa3d642e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1710\",\"sale_id\":\"982\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1473, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"962\",\"date\":\"2022-12-27 16:05:00\",\"reference_no\":\"2478\",\"customer_id\":\"754\",\"customer\":\"John Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"8c98f4dfc3e792f9295cb465d216c15b13e934067f82e505437a921c18171d8c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1688\",\"sale_id\":\"962\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1474, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"961\",\"date\":\"2022-12-27 14:25:00\",\"reference_no\":\"2477\",\"customer_id\":\"595\",\"customer\":\"Frank\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-28 14:29:48\",\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"20000.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\":\"deed4a7307c75012e115dd0496f6c3b3b40eadf877c30bfcd7737cbdec77ad62\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1687\",\"sale_id\":\"961\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1475, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"981\",\"date\":\"2022-12-27 10:25:00\",\"reference_no\":\"2491\",\"customer_id\":\"758\",\"customer\":\"Alice Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"3a738c5b65c66773f4afbd8d345a8a95a168983780e45512a6321b10cd1cdc3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1708\",\"sale_id\":\"981\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1476, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"980\",\"date\":\"2022-12-27 10:20:00\",\"reference_no\":\"2490\",\"customer_id\":\"757\",\"customer\":\"Antony mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2000.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\":\"c0cc2c8dc46157c16ec406a599f0975db3860018d1b1642fa8d5690f6dbfd4b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1706\",\"sale_id\":\"980\",\"product_id\":\"1045\",\"product_code\":\"50597015\",\"product_name\":\"Tomato Nova f1 seeedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1707\",\"sale_id\":\"980\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1477, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"979\",\"date\":\"2022-12-27 10:15:00\",\"reference_no\":\"2488\",\"customer_id\":\"756\",\"customer\":\"Isaack k Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2500.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\":\"bd9868769a85975c375a03f458be0391f3ea09d5910b00022b569575753eaf33\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1705\",\"sale_id\":\"979\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1478, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"977\",\"date\":\"2022-12-27 10:05:00\",\"reference_no\":\"2486\",\"customer_id\":\"747\",\"customer\":\"Daniel Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"ea4cb3bcb378243ed55e4832e9d9a17bffc87daacc52c028e5610d67176e009b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1703\",\"sale_id\":\"977\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1479, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"960\",\"date\":\"2022-12-27 10:05:00\",\"reference_no\":\"2476\",\"customer_id\":\"753\",\"customer\":\"Symon Nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-28 14:27:55\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3400.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\":\"e83315c77144ff57d2f2d71bfa8b974fd46111f3d9a3b083c59f1c07b89c53a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1682\",\"sale_id\":\"960\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1683\",\"sale_id\":\"960\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1480, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"976\",\"date\":\"2022-12-27 10:00:00\",\"reference_no\":\"2484\",\"customer_id\":\"600\",\"customer\":\"Antony Karuga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"945.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"945.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"940.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\":\"2598e3e825b39aa575288a5bae5396326a59091e0434b2c3e943ed9a93aeedaa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1702\",\"sale_id\":\"976\",\"product_id\":\"1090\",\"product_code\":\"58458372\",\"product_name\":\"fanaka f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1481, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"974\",\"date\":\"2022-12-27 09:50:00\",\"reference_no\":\"2482\",\"customer_id\":\"637\",\"customer\":\"John Kinyua cini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"db7fd6cc884adf14ab5b7964e3b7b40e27c5a137daeb9501a573e36daabec1f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1700\",\"sale_id\":\"974\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1482, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"975\",\"date\":\"2022-12-27 09:50:00\",\"reference_no\":\"2481\",\"customer_id\":\"590\",\"customer\":\"Simon muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21105.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21105.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"34\",\"pos\":\"0\",\"paid\":\"21105.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\":\"f052f6d6aeb92b2f98b30af5c48b13baed7e0055d37616ead029cec907f2c54e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1701\",\"sale_id\":\"975\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"33.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21105.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"33.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1483, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"965\",\"date\":\"2022-12-27 09:35:00\",\"reference_no\":\"2480\",\"customer_id\":\"179\",\"customer\":\"Peter Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"4af645378325b532e0290157cf7cc2e2a3aaad562dc1e5b099b1c3cbcf61d814\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1691\",\"sale_id\":\"965\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1484, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"964\",\"date\":\"2022-12-27 09:35:00\",\"reference_no\":\"2479\",\"customer_id\":\"218\",\"customer\":\"Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"147d8c42c2dfa836d503d3d67268b94c5e79f24f544449d0f773dd736cf4d86a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1690\",\"sale_id\":\"964\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1485, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"959\",\"date\":\"2022-12-26 10:00:00\",\"reference_no\":\"2475\",\"customer_id\":\"732\",\"customer\":\"Martin Kiara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"390.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"390.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"130\",\"pos\":\"0\",\"paid\":\"390.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\":\"eb8d6845772f0c67eac70ba8cd940d72b71d5bbb8f1a3cbe26b87cf2116a02e3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1679\",\"sale_id\":\"959\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"130.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"390.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"130.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1486, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"958\",\"date\":\"2022-12-26 10:00:00\",\"reference_no\":\"2473\",\"customer_id\":\"606\",\"customer\":\"David muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3450.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\":\"7ecb674f76a00fc81f8eb5bb8363c786da8215b45c1fe905ebd52581fdc7b5c1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1678\",\"sale_id\":\"958\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1487, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"955\",\"date\":\"2022-12-24 10:23:00\",\"reference_no\":\"2469\",\"customer_id\":\"721\",\"customer\":\"Emprahim Njoroge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"300\",\"pos\":\"0\",\"paid\":\"600.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\":\"4a35e6f8ddf212cf56d5754d28a4a4d8264d9e65025dd4f368d5cc0c5c08a08f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1675\",\"sale_id\":\"955\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1488, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"954\",\"date\":\"2022-12-24 10:22:00\",\"reference_no\":\"2468\",\"customer_id\":\"567\",\"customer\":\"Julius Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"152.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"152.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"45\",\"pos\":\"0\",\"paid\":\"150.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\":\"f2b70936c77c10594defdcea3000b073107a35c61da0494809accb00cfebb7b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1673\",\"sale_id\":\"954\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"122.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1674\",\"sale_id\":\"954\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1489, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"953\",\"date\":\"2022-12-24 10:21:00\",\"reference_no\":\"2467\",\"customer_id\":\"751\",\"customer\":\"Wandeto\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"500\",\"pos\":\"0\",\"paid\":\"1600.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\":\"8da098b5048b0dc5f30efe9620870da1349ba0ab0a2111158e2db6414e1fd737\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1672\",\"sale_id\":\"953\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1490, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"957\",\"date\":\"2022-12-24 09:50:00\",\"reference_no\":\"2472\",\"customer_id\":\"752\",\"customer\":\"Reuben Mureithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"feee6f9e1c8fa6a18241ffb0891d211830fb32012918e2102d24a0147f92d34c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1677\",\"sale_id\":\"957\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1491, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"956\",\"date\":\"2022-12-24 09:40:00\",\"reference_no\":\"2470\",\"customer_id\":\"546\",\"customer\":\"Isaih Nyamu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22680.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22680.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"36\",\"pos\":\"0\",\"paid\":\"10000.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\":\"2fc1dad8663640fa4a9167b0a3d5ab6405c34791fa7d74dc7a8671d6e939a384\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1676\",\"sale_id\":\"956\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22680.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1492, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"941\",\"date\":\"2022-12-23 12:53:00\",\"reference_no\":\"2454\",\"customer_id\":\"743\",\"customer\":\"Mutinda kisini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"6a1066215e7aa706180cdf989c9dd7bd811df949eb69904965569074b10efa1f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1656\",\"sale_id\":\"941\",\"product_id\":\"1089\",\"product_code\":\"47608728\",\"product_name\":\"Gloria Seedlins\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1493, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"940\",\"date\":\"2022-12-23 12:49:00\",\"reference_no\":\"2453\",\"customer_id\":\"742\",\"customer\":\"joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"15000.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\":\"423c080c7a97c557169b308cae44bba80719f9c9b8c96587bf9b88110215c12a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1655\",\"sale_id\":\"940\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1494, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"952\",\"date\":\"2022-12-23 10:15:00\",\"reference_no\":\"2466\",\"customer_id\":\"750\",\"customer\":\"Mirriam Muthoni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"1500.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\":\"4d719ee136e2a82e86033800702d1c1a62e29877d3fefd1e7265516c0c50589d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1671\",\"sale_id\":\"952\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1495, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"951\",\"date\":\"2022-12-23 10:00:00\",\"reference_no\":\"2464\",\"customer_id\":\"749\",\"customer\":\"Jeremiah Nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"700.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\":\"9bc5bd18093433911e9e69624f88be6033553406c332e695be8eddb596879016\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1669\",\"sale_id\":\"951\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1670\",\"sale_id\":\"951\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1496, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"950\",\"date\":\"2022-12-23 10:00:00\",\"reference_no\":\"2463\",\"customer_id\":\"462\",\"customer\":\"Peter Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"301\",\"pos\":\"0\",\"paid\":\"2350.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\":\"eec3704f0264ef6fb7ee1c1843a86a86c9f39dccdacfbe782f3bf85d060b9c76\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1667\",\"sale_id\":\"950\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1668\",\"sale_id\":\"950\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1497, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"949\",\"date\":\"2022-12-23 09:45:00\",\"reference_no\":\"2462\",\"customer_id\":\"602\",\"customer\":\"Michael Kibicho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"8400.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\":\"36865171575422afb796179e59adc7fe7b406912cac822931293f967558e78e6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1666\",\"sale_id\":\"949\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1498, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"947\",\"date\":\"2022-12-23 09:40:00\",\"reference_no\":\"2461\",\"customer_id\":\"747\",\"customer\":\"Daniel Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"d01fbeb1d4e51b3569b0d0af31042d71f6873ee2514900787d8f131295166e29\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1664\",\"sale_id\":\"947\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1499, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"948\",\"date\":\"2022-12-23 09:40:00\",\"reference_no\":\"2459\",\"customer_id\":\"748\",\"customer\":\"Beatrice Wakini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"350.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\":\"f0451dfae82aa35d314f15fc71e58a20e2a378a94b269f45ef3337889e42e619\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1665\",\"sale_id\":\"948\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1500, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"946\",\"date\":\"2022-12-23 09:35:00\",\"reference_no\":\"2460\",\"customer_id\":\"609\",\"customer\":\"Julius Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"17475.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\":\"02f19d7748106cf6b9123695297e4a582c33d662a36c8976098b14d1f7130b53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1662\",\"sale_id\":\"946\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"22.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1663\",\"sale_id\":\"946\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1501, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"945\",\"date\":\"2022-12-23 09:35:00\",\"reference_no\":\"2458\",\"customer_id\":\"335\",\"customer\":\"Antony Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-31 11:19:47\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"d7e597b7e72de4178eb8c5263621cd89826f7821e888c7444bf06d0ffbabde6e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1752\",\"sale_id\":\"945\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1502, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"944\",\"date\":\"2022-12-23 09:35:00\",\"reference_no\":\"2457\",\"customer_id\":\"746\",\"customer\":\"Rose Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"2900.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\":\"dca3329714245271d21e1f05ac1e0365b27bd5ecfcc9d2f59611270a0f0313be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1660\",\"sale_id\":\"944\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1503, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"963\",\"date\":\"2022-12-23 09:30:00\",\"reference_no\":\"2465\",\"customer_id\":\"755\",\"customer\":\"Nixson Mugweru ukii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4815.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4815.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-29 11:15:58\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4300.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\":\"eb0916c85d585feace8bb7a7b804a66b84185a614d2f28023e5dc1b8a3e7d386\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1726\",\"sale_id\":\"963\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1727\",\"sale_id\":\"963\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"2610.0000\",\"unit_price\":\"2610.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2610.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2610.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1504, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"943\",\"date\":\"2022-12-23 09:30:00\",\"reference_no\":\"2456\",\"customer_id\":\"745\",\"customer\":\"Kibuchi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"420.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"130\",\"pos\":\"0\",\"paid\":\"400.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\":\"0f98a4d8046028212b6c0be2f448a83f4f844b0834f5d7b0ac26e2dc762a4239\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1658\",\"sale_id\":\"943\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"210.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1659\",\"sale_id\":\"943\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"210.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1505, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"942\",\"date\":\"2022-12-23 09:30:00\",\"reference_no\":\"2455\",\"customer_id\":\"744\",\"customer\":\"Willy kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2500.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\":\"ab8522ec2e94f5d478aac7ed40b30f183774a17c24c83fd12a7883e38bb39d6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1657\",\"sale_id\":\"942\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1506, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"936\",\"date\":\"2022-12-22 16:49:00\",\"reference_no\":\"2598\",\"customer_id\":\"739\",\"customer\":\"Samuel Chege\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"8f8f803b9ef500befc689ecbeae83e765c48db2e0130ab358fe6428c82604488\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1651\",\"sale_id\":\"936\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1507, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"935\",\"date\":\"2022-12-22 16:48:00\",\"reference_no\":\"2596\",\"customer_id\":\"738\",\"customer\":\"David Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3200.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\":\"b581c1474ab86835ae7e9772153373abbda0df44eca7bce7b1aef26ba8682860\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1650\",\"sale_id\":\"935\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1508, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"934\",\"date\":\"2022-12-22 16:44:00\",\"reference_no\":\"2594\",\"customer_id\":\"705\",\"customer\":\"Moses gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4320.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\":\"8bb347ba9c575746c80ff1a05f48fd5e44922d2b279d710aecd962eaeaa17f79\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1649\",\"sale_id\":\"934\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1509, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"933\",\"date\":\"2022-12-22 16:43:00\",\"reference_no\":\"2593\",\"customer_id\":\"737\",\"customer\":\"Stanely Gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"7bb279c76563238848a2da6ceebb34ed2f9325e3a08df3b60d46d756f7f053e4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1648\",\"sale_id\":\"933\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1510, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"932\",\"date\":\"2022-12-22 16:35:00\",\"reference_no\":\"2589\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1400.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\":\"d53ac07b0377bc260b96ee1e440225d9fa04d66db59827ed85ef56d5dbead467\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1647\",\"sale_id\":\"932\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1511, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"931\",\"date\":\"2022-12-22 16:34:00\",\"reference_no\":\"2587\",\"customer_id\":\"187\",\"customer\":\"christopher maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"251dd38ef822c6f7594c5b3676e8735bac6726fe216ab49666176712b8f347c1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1645\",\"sale_id\":\"931\",\"product_id\":\"1088\",\"product_code\":\"62031388\",\"product_name\":\"gloria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1646\",\"sale_id\":\"931\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1512, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"930\",\"date\":\"2022-12-22 16:13:00\",\"reference_no\":\"2585\",\"customer_id\":\"736\",\"customer\":\"John Ngunjiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"702.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"702.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"340\",\"pos\":\"0\",\"paid\":\"700.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\":\"db2350f8019088d3895361f04e4fcb2b70f843379dbcbe03e7b8499fc7d19d2a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1640\",\"sale_id\":\"930\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"175.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"175.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1641\",\"sale_id\":\"930\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1642\",\"sale_id\":\"930\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1513, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"939\",\"date\":\"2022-12-22 10:10:00\",\"reference_no\":\"2600\",\"customer_id\":\"741\",\"customer\":\"Joseph Bundi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"3000.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\":\"f2112d145e25604e2d29c5d5122fe570a077bb4356afcf092703762966b87fc9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1654\",\"sale_id\":\"939\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1514, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"938\",\"date\":\"2022-12-22 10:10:00\",\"reference_no\":\"2599\",\"customer_id\":\"740\",\"customer\":\"Peterson Wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5355.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5355.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"1200.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\":\"c51363e71b810746f74f43749d4035b94a7411048476c654b95d8f04edaf44ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1653\",\"sale_id\":\"938\",\"product_id\":\"999\",\"product_code\":\"40320316\",\"product_name\":\"malkia skuma\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5355.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1515, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"937\",\"date\":\"2022-12-22 08:55:00\",\"reference_no\":\"2592\",\"customer_id\":\"592\",\"customer\":\"Simon nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"1900.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\":\"9990fa4a3850b0cc99cfd4981f6dca3b3747b377c61fed694f5ffae5b2759b34\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1652\",\"sale_id\":\"937\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1516, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"919\",\"date\":\"2022-12-21 16:16:00\",\"reference_no\":\"2571\",\"customer_id\":\"577\",\"customer\":\"John Manegene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"80\",\"pos\":\"0\",\"paid\":\"240.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\":\"e612a8e4a0dc88ecb5514f017cfb1c9b08b0a5cd720e5713f64c037d6f63915e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1624\",\"sale_id\":\"919\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"80.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1517, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"918\",\"date\":\"2022-12-21 16:13:00\",\"reference_no\":\"2570\",\"customer_id\":\"377\",\"customer\":\"Micah Nguu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"29d91de9649e60b81a5e5a9de2439f19eabe1ff4920612a0ad6f13059741b7b3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1623\",\"sale_id\":\"918\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1518, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"917\",\"date\":\"2022-12-21 16:12:00\",\"reference_no\":\"2569\",\"customer_id\":\"730\",\"customer\":\"Evan Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"b84223c08b0b68ec4010f6923b62f1b0c8cd5092746e730ccc6617ac59d6123a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1622\",\"sale_id\":\"917\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1519, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"916\",\"date\":\"2022-12-21 15:53:00\",\"reference_no\":\"2565\",\"customer_id\":\"133\",\"customer\":\"Patrick Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"1300.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\":\"7f529dad1d5be4700acfe3fece92e81cca7a71d7f472a092c1412ae3c7aa5d5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1621\",\"sale_id\":\"916\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"400.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"400.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1520, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"929\",\"date\":\"2022-12-21 15:50:00\",\"reference_no\":\"2583\",\"customer_id\":\"735\",\"customer\":\"Charles Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1620.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\":\"bf4c97db298e5a65e12139296c06bb857b427b3c96c9594472424eb69f50a399\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1638\",\"sale_id\":\"929\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1521, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"928\",\"date\":\"2022-12-21 15:50:00\",\"reference_no\":\"2582\",\"customer_id\":\"611\",\"customer\":\"Samson Ngayo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3400.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\":\"c94bf87e0e9c5c669969170741c49948b15fd42c173c198542248ff5bd383fc7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1637\",\"sale_id\":\"928\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1522, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"915\",\"date\":\"2022-12-21 15:50:00\",\"reference_no\":\"2564\",\"customer_id\":\"617\",\"customer\":\"Dynamic\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"121905.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"121905.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-29 11:05:46\",\"total_items\":\"194\",\"pos\":\"0\",\"paid\":\"90000.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\":\"87d255de0b9c40a2f4e373a59a9efbd5902f262aeee517b7d783385053dd0bf7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1720\",\"sale_id\":\"915\",\"product_id\":\"962\",\"product_code\":\"24694035\",\"product_name\":\"melon sukari f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"122.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76860.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"122.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1721\",\"sale_id\":\"915\",\"product_id\":\"1091\",\"product_code\":\"97988726\",\"product_name\":\"assila\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"21.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13545.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"21.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1722\",\"sale_id\":\"915\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"31500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"50.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1523, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"914\",\"date\":\"2022-12-21 15:45:00\",\"reference_no\":\"2563\",\"customer_id\":\"599\",\"customer\":\"Stanely\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8190.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8190.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-21 15:49:49\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"8190.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\":\"723745d31c53e0ae7a2a347b037b925b2080c771309434a681bca63bb8aa051d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1619\",\"sale_id\":\"914\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8190.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1524, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"926\",\"date\":\"2022-12-21 15:40:00\",\"reference_no\":\"2579\",\"customer_id\":\"733\",\"customer\":\"benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"22500.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\":\"8c8a200745fd0c75073ef8b465408e3941937cca90c84685d7516d95bf972239\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1635\",\"sale_id\":\"926\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1525, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"925\",\"date\":\"2022-12-21 15:40:00\",\"reference_no\":\"2578\",\"customer_id\":\"732\",\"customer\":\"Martin Kiara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"c268dd1465f759a7af4d30f56bb97b9e3e740bfbf2d702966c43677637ac52c6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1634\",\"sale_id\":\"925\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1526, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"923\",\"date\":\"2022-12-21 15:25:00\",\"reference_no\":\"2576\",\"customer_id\":\"731\",\"customer\":\"Frackson Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"a7028945e51e4831b892f4cab0266345adb891689c473a86ba1c5055e6a8d838\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1629\",\"sale_id\":\"923\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1527, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"922\",\"date\":\"2022-12-21 15:25:00\",\"reference_no\":\"2575\",\"customer_id\":\"120\",\"customer\":\"Cyrus Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"500\",\"pos\":\"0\",\"paid\":\"1000.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\":\"4e2cfddcfd2a3fc1f8e9d982754f9b7a83eaea9efacd75702af81591a6c5729c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1628\",\"sale_id\":\"922\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1528, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"921\",\"date\":\"2022-12-21 15:20:00\",\"reference_no\":\"2574\",\"customer_id\":\"204\",\"customer\":\"Benjamin haraka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"252\",\"pos\":\"0\",\"paid\":\"2130.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\":\"bdd7408cad49b8e5087533f26ecbebff310ca177abda75d4008fa3bfbf5d234b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1626\",\"sale_id\":\"921\",\"product_id\":\"980\",\"product_code\":\"89637785\",\"product_name\":\"star9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1627\",\"sale_id\":\"921\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"250.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"250.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1529, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"920\",\"date\":\"2022-12-21 15:15:00\",\"reference_no\":\"2573\",\"customer_id\":\"501\",\"customer\":\"Antony Karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"4410.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\":\"0b98065b679ddd2b532e05a388bcda363d4458416f9d3a038f7e744c9a5a7ca1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1625\",\"sale_id\":\"920\",\"product_id\":\"1008\",\"product_code\":\"90431435\",\"product_name\":\"fabiola\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1530, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"927\",\"date\":\"2022-12-20 15:45:00\",\"reference_no\":\"2580\",\"customer_id\":\"734\",\"customer\":\"Benson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"1000.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\":\"966cc67ebf0426d1997e75cbb49fc7510f5563cef9dd1aa20f5068dd4082c6a1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1636\",\"sale_id\":\"927\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1531, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"913\",\"date\":\"2022-12-20 15:45:00\",\"reference_no\":\"2561\",\"customer_id\":\"729\",\"customer\":\"Grace Kibunja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4000.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\":\"b846b8993fa1f269e24a1562964f897d24efaed711ac8c57e7cedda6db4c0fad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1617\",\"sale_id\":\"913\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1532, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"912\",\"date\":\"2022-12-20 15:40:00\",\"reference_no\":\"2560\",\"customer_id\":\"652\",\"customer\":\"Livingstone Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"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\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"500.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\":\"f56e0cbe4f7dc48dd59512e22c4c772fd40d66b0e4744762f0e91ae287d5ddc9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1615\",\"sale_id\":\"912\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1616\",\"sale_id\":\"912\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1533, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"911\",\"date\":\"2022-12-20 15:40:00\",\"reference_no\":\"2559\",\"customer_id\":\"724\",\"customer\":\"benard Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10000\",\"pos\":\"0\",\"paid\":\"20000.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\":\"c850ed6b978a6c7347a3221e2c0e1ea95a3499bac0a7858534839d1bc9bc220a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1614\",\"sale_id\":\"911\",\"product_id\":\"1088\",\"product_code\":\"62031388\",\"product_name\":\"gloria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10000.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"10000.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1534, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"910\",\"date\":\"2022-12-20 15:35:00\",\"reference_no\":\"2558\",\"customer_id\":\"594\",\"customer\":\"Robert Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2830.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\":\"6b7ca9e97de624c8319f99d14f3febba061c4c1619928943e8f488b47fd33fd3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1613\",\"sale_id\":\"910\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1535, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"909\",\"date\":\"2022-12-20 15:35:00\",\"reference_no\":\"2557\",\"customer_id\":\"728\",\"customer\":\"Margret Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"869d8af1a0d0ae6376e96bf89778bdc82b4db994677cbea79f00e54c971cfb79\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1612\",\"sale_id\":\"909\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1536, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"924\",\"date\":\"2022-12-20 15:30:00\",\"reference_no\":\"2556\",\"customer_id\":\"592\",\"customer\":\"Simon nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"7300.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\":\"eee09b730727af615e2c695c07f84d9598fe13823c1454090bebe406fe59fee8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1630\",\"sale_id\":\"924\",\"product_id\":\"969\",\"product_code\":\"88906214\",\"product_name\":\"Kiboko f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1631\",\"sale_id\":\"924\",\"product_id\":\"4294967295\",\"product_code\":\"cabbage\",\"product_name\":\"kiboko seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1537, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"908\",\"date\":\"2022-12-20 15:20:00\",\"reference_no\":\"2554\",\"customer_id\":\"451\",\"customer\":\"Isaac Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2380.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2380.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2250.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\":\"4f2fa20d224356fdaf4ff92c92872948dc36eeb384caf2831cad5f5995428ee7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1610\",\"sale_id\":\"908\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1611\",\"sale_id\":\"908\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1538, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"907\",\"date\":\"2022-12-20 15:20:00\",\"reference_no\":\"2553\",\"customer_id\":\"726\",\"customer\":\"Bilha Karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2000.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\":\"ba6afb1326a137908ee92c0a22a155c430447ce858362dff12e2588a18995c1b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1609\",\"sale_id\":\"907\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1539, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"906\",\"date\":\"2022-12-20 15:15:00\",\"reference_no\":\"2552\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"300.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\":\"ba87009450d36819b39ef42bd34dcc9f01eb4900baab3453e2a9f6729b3f52ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1607\",\"sale_id\":\"906\",\"product_id\":\"1084\",\"product_code\":\"09412470\",\"product_name\":\"Terere pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1608\",\"sale_id\":\"906\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1540, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"905\",\"date\":\"2022-12-20 15:10:00\",\"reference_no\":\"2551\",\"customer_id\":\"727\",\"customer\":\"Lawrence murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"630.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\":\"4232169eeb9d69b53ec59744a0c12542e4d28ac6f63563df264230d767031944\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1606\",\"sale_id\":\"905\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1541, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"904\",\"date\":\"2022-12-20 09:37:00\",\"reference_no\":\"2398\",\"customer_id\":\"597\",\"customer\":\"Jackson  Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"7800.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\":\"c63ac20172cf9d8d14746ced7cc5a1f44468dfe58be5656b1aeccc6a0677938d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1599\",\"sale_id\":\"904\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1600\",\"sale_id\":\"904\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4095.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1542, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"899\",\"date\":\"2022-12-19 10:58:00\",\"reference_no\":\"2390\",\"customer_id\":\"470\",\"customer\":\"John Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"0554297e03ff08401659a5f618df0236b24851f52b359e29908144022f5ebc4b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1587\",\"sale_id\":\"899\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1543, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"903\",\"date\":\"2022-12-19 09:30:00\",\"reference_no\":\"2395\",\"customer_id\":\"721\",\"customer\":\"Emprahim Njoroge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"60c657d57f143a38790e71b1b00bf93062116357f84f56d6b90d36800cbe699a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1596\",\"sale_id\":\"903\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1544, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"902\",\"date\":\"2022-12-19 09:20:00\",\"reference_no\":\"2394\",\"customer_id\":\"720\",\"customer\":\"Mary Muthoni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3200.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\":\"886d48e8207590ebcdedf39ca034402843b5c31b7381cc87cf11a9600ec2534f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1595\",\"sale_id\":\"902\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1545, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"901\",\"date\":\"2022-12-19 09:15:00\",\"reference_no\":\"2392\",\"customer_id\":\"719\",\"customer\":\"Benjamin Komu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-29 10:28:17\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"13500.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\":\"94b2ba4359396ccf0b2baeaaa785f7123ae6f8b0c542ff9577c5f816b736254f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1709\",\"sale_id\":\"901\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1546, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"898\",\"date\":\"2022-12-17 10:55:00\",\"reference_no\":\"2388\",\"customer_id\":\"612\",\"customer\":\"Joseph Ndege\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27090.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27090.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"43\",\"pos\":\"0\",\"paid\":\"31300.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\":\"6d3bc6546507a08afc6622aeead82775dc892ba2fe403d10858bd137a58a39a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1585\",\"sale_id\":\"898\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1586\",\"sale_id\":\"898\",\"product_id\":\"998\",\"product_code\":\"62393307\",\"product_name\":\"gloria\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1547, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"897\",\"date\":\"2022-12-17 10:50:00\",\"reference_no\":\"2385\",\"customer_id\":\"689\",\"customer\":\"Eliud Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"250\",\"pos\":\"0\",\"paid\":\"670.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\":\"5fe520f7367ad8386487515249e3ec71b0428d9396ae671ad34c9106b2e5fb92\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1584\",\"sale_id\":\"897\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"250.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"250.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1548, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"896\",\"date\":\"2022-12-17 10:40:00\",\"reference_no\":\"2384\",\"customer_id\":\"717\",\"customer\":\"Joseph Kamuhia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3150.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\":\"8154b1a23b7caf391fef14ffa547cf792b1b0cb06f5008104c466ca527928785\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1583\",\"sale_id\":\"896\",\"product_id\":\"980\",\"product_code\":\"89637785\",\"product_name\":\"star9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1549, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"895\",\"date\":\"2022-12-17 10:35:00\",\"reference_no\":\"2383\",\"customer_id\":\"603\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-22 16:32:36\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"7700.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\":\"5216b3be15fe92fccbbd9f00ce24ff41d524bfa9f03809880b853e88de6476f7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1643\",\"sale_id\":\"895\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1644\",\"sale_id\":\"895\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ranger\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1550, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"893\",\"date\":\"2022-12-17 10:25:00\",\"reference_no\":\"2382\",\"customer_id\":\"716\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"350.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\":\"9eb81693b23b233ae34a63f485ac4132e93677fcf46248bac9086f403bc3327c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1578\",\"sale_id\":\"893\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1551, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"892\",\"date\":\"2022-12-17 10:20:00\",\"reference_no\":\"2381\",\"customer_id\":\"248\",\"customer\":\"Douglas Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"e253087b91c8fd71b9eaa51f04bf88cc7673410d8e53e41ca06a5951ce387d3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1577\",\"sale_id\":\"892\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1552, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"900\",\"date\":\"2022-12-17 09:10:00\",\"reference_no\":\"2389\",\"customer_id\":\"718\",\"customer\":\"Titus kipchirchir\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"130.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"130.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"80\",\"pos\":\"0\",\"paid\":\"120.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\":\"2df59c32c9ffdf369c1e3e9f33d1a63b75a0e37ca997fca5f70b58cd0abf80fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1591\",\"sale_id\":\"900\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1592\",\"sale_id\":\"900\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1593\",\"sale_id\":\"900\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1553, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"891\",\"date\":\"2022-12-16 10:50:00\",\"reference_no\":\"2380\",\"customer_id\":\"709\",\"customer\":\"Faith Karira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"120\",\"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\":\"3a875986c50ea8860bfc3b6282e1de61ac7e406dd09a9841da166a75075175ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1575\",\"sale_id\":\"891\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"105.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1576\",\"sale_id\":\"891\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1554, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"888\",\"date\":\"2022-12-16 10:40:00\",\"reference_no\":\"2378\",\"customer_id\":\"708\",\"customer\":\"Peter Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"13600.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\":\"7f56ab2df1f4391b20b22e736b4cc9fd3cc5dec34d26adb255c16c87204c7446\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1572\",\"sale_id\":\"888\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17280.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1555, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"887\",\"date\":\"2022-12-16 10:35:00\",\"reference_no\":\"2376\",\"customer_id\":\"707\",\"customer\":\"Hellen Wangeci\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5670.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5670.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"1000.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\":\"f411475a21224c9068ef09876a15b3e6726d4c188bb1b862da8f3c983189371f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1571\",\"sale_id\":\"887\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5670.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1556, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"886\",\"date\":\"2022-12-16 10:30:00\",\"reference_no\":\"2373\",\"customer_id\":\"706\",\"customer\":\"Patrick munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7800.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\":\"4e469ae00ac3f8ee6853b8b182730a735294c68257a4d033e817dcfb00c4b820\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1570\",\"sale_id\":\"886\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1557, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"885\",\"date\":\"2022-12-16 10:25:00\",\"reference_no\":\"2372\",\"customer_id\":\"705\",\"customer\":\"Moses gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10800.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\":\"1c3984a69fc8f809fd128c8dd691347dcfc32116ebdb88d6ab55e7452ef63a4d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1569\",\"sale_id\":\"885\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1558, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"884\",\"date\":\"2022-12-16 10:20:00\",\"reference_no\":\"2371\",\"customer_id\":\"586\",\"customer\":\"Simon muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"28\",\"pos\":\"0\",\"paid\":\"21570.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\":\"a7f2b2fc731146f557b7cc6c8083acce101f08e95cb3ef98ad9d9bdddf9dc05b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1566\",\"sale_id\":\"884\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1567\",\"sale_id\":\"884\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1568\",\"sale_id\":\"884\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1559, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"883\",\"date\":\"2022-12-16 10:15:00\",\"reference_no\":\"2370\",\"customer_id\":\"704\",\"customer\":\"David Wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"380\",\"pos\":\"0\",\"paid\":\"1190.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\":\"c46b0ff8a25652bb5d5336569fe0e889560f70b777acb0f90e8776c2d8e27c89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1564\",\"sale_id\":\"883\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1565\",\"sale_id\":\"883\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"180.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"180.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1560, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"882\",\"date\":\"2022-12-16 10:15:00\",\"reference_no\":\"2369\",\"customer_id\":\"703\",\"customer\":\"Aron Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"400.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\":\"a2cf3202fb6de0f527dddc44e6bc900934158597f8e5760dcbf405494c07eb09\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1563\",\"sale_id\":\"882\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1561, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"878\",\"date\":\"2022-12-15 16:02:00\",\"reference_no\":\"2363\",\"customer_id\":\"487\",\"customer\":\"Joseph Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"a56c6b9e6e7430b537020c5690d2ecdc52b130643072240aad6284da350de24f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1551\",\"sale_id\":\"878\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1562, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"877\",\"date\":\"2022-12-15 16:01:00\",\"reference_no\":\"2362\",\"customer_id\":\"536\",\"customer\":\"Allan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"1559d439721197e6113feeabb6f81f0bf0ed53930a4e82bbd4779296c65384a6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1550\",\"sale_id\":\"877\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1563, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"876\",\"date\":\"2022-12-15 15:57:00\",\"reference_no\":\"2360\",\"customer_id\":\"648\",\"customer\":\"Mugo Njiiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"a7ab311ddd469739e8ad145892f57d8917348a0a1d61f85b43ce0fdc9c547f66\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1546\",\"sale_id\":\"876\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1564, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"875\",\"date\":\"2022-12-15 15:55:00\",\"reference_no\":\"2359\",\"customer_id\":\"679\",\"customer\":\"Martin Muturi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"700.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\":\"32ab9f7bfe9e9e5515196c59cd9057eafed6b7135b27451e901d11a625185009\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1545\",\"sale_id\":\"875\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1565, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"874\",\"date\":\"2022-12-15 15:38:00\",\"reference_no\":\"2358\",\"customer_id\":\"700\",\"customer\":\"paul Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3200.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\":\"46fa246c4db05e94201e547b69696043b512235cb865e082bf4c4f559fc8cdca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1544\",\"sale_id\":\"874\",\"product_id\":\"1087\",\"product_code\":\"98145462\",\"product_name\":\"ansal  sdlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1566, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"873\",\"date\":\"2022-12-15 15:31:00\",\"reference_no\":\"2356\",\"customer_id\":\"411\",\"customer\":\"Eliud Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3200.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\":\"054a33808286526a1a639ab612d1a15a1652e533fa34baf7f8f53a1294f2c1d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1542\",\"sale_id\":\"873\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1543\",\"sale_id\":\"873\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1567, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"881\",\"date\":\"2022-12-15 09:40:00\",\"reference_no\":\"2366\",\"customer_id\":\"589\",\"customer\":\"Josphat Njoroge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7200.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\":\"1b2f28a98e55dcfa6514a3eb8758d14430825cd0d8fe897a7b3fe19a57b2dd1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1558\",\"sale_id\":\"881\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1559\",\"sale_id\":\"881\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1568, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"880\",\"date\":\"2022-12-15 09:35:00\",\"reference_no\":\"2365\",\"customer_id\":\"598\",\"customer\":\"Dennis Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"7700.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\":\"2610ca79516900c92c4f75b0098c9c988bccc69e3463a2622dd162fade94453e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1556\",\"sale_id\":\"880\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1557\",\"sale_id\":\"880\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ranger seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1569, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"879\",\"date\":\"2022-12-15 08:20:00\",\"reference_no\":\"2364\",\"customer_id\":\"144\",\"customer\":\"Stephen Kariuki\\/ muthee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14925.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-17 09:35:11\",\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"14925.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\":\"be996a0fbbe6e06ef14daa81ae6096987dba27aae9ba1b9c23f7b2169743c480\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1553\",\"sale_id\":\"879\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1554\",\"sale_id\":\"879\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1555\",\"sale_id\":\"879\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3900.0000\",\"unit_price\":\"3900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1570, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"870\",\"date\":\"2022-12-14 16:33:00\",\"reference_no\":\"2448\",\"customer_id\":\"660\",\"customer\":\"Joseph maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4200.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\":\"5303c1816c5b685b2832cdac801ea9ec422cfd7b9852a0615eea58ec29b689e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1536\",\"sale_id\":\"870\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1571, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"872\",\"date\":\"2022-12-14 15:25:00\",\"reference_no\":\"2353\",\"customer_id\":\"673\",\"customer\":\"William Kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-15 15:26:34\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"db284c6f1b1f4abeed22a8e9d25846da5a98be73dc41d32c48e1d9328a5405ce\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1540\",\"sale_id\":\"872\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1572, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"871\",\"date\":\"2022-12-14 15:15:00\",\"reference_no\":\"2352\",\"customer_id\":\"701\",\"customer\":\"Charity wanja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"2c91eb9b6c5132d03db46aac2a20c7a4395b85c357918adba2dd22a770fe9362\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1538\",\"sale_id\":\"871\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1573, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"869\",\"date\":\"2022-12-14 12:04:00\",\"reference_no\":\"2446\",\"customer_id\":\"692\",\"customer\":\"Gladys wambere\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 12:26:05\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"407a8be2910b54ad05529bc4982f25d4b9c23ac7624997f2a6652e8b03fc51c3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1533\",\"sale_id\":\"869\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1574, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"868\",\"date\":\"2022-12-14 12:02:00\",\"reference_no\":\"2445\",\"customer_id\":\"691\",\"customer\":\"Josphat wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6000.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\":\"ec3be6d2f4257e1b0495c9b9eb178449c3c37bb8b2726041fec2c19dad95bb57\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1531\",\"sale_id\":\"868\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1575, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"867\",\"date\":\"2022-12-14 11:58:00\",\"reference_no\":\"2444\",\"customer_id\":\"690\",\"customer\":\"Muriuki simon\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"25200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"40\",\"pos\":\"0\",\"paid\":\"20000.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\":\"b39241a2f88b91d79173f661154f81a5fce7d3fb4304ba121d2b5c7724e82372\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1530\",\"sale_id\":\"867\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1576, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"866\",\"date\":\"2022-12-14 11:49:00\",\"reference_no\":\"2443\",\"customer_id\":\"689\",\"customer\":\"Eliud Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"b51e929dd31f78cd494409e663a0c2639b63db2f36d032ad365e917a568dd546\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1527\",\"sale_id\":\"866\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1577, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"865\",\"date\":\"2022-12-13 13:40:00\",\"reference_no\":\"SALE0109\",\"customer_id\":\"628\",\"customer\":\"Isaac Gitau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 11:56:14\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"bf6b2cdee828cbb20f53644af0403ecc95842aff43a2d0b1323342b1a67fda26\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1528\",\"sale_id\":\"865\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1578, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"851\",\"date\":\"2022-12-13 13:10:00\",\"reference_no\":\"2425\",\"customer_id\":\"681\",\"customer\":\"Albert murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"fa8e60790cb6b2a00c2d45adba51b5f0ebe06cb37139363707107d12728feef1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1499\",\"sale_id\":\"851\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1579, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"864\",\"date\":\"2022-12-13 11:35:00\",\"reference_no\":\"2441\",\"customer_id\":\"501\",\"customer\":\"Antony Karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1890.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1890.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1890.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\":\"204006f0c2ae12532d45a16bdb1d3ec37762a467c26bb612e27727c5178f2ef2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1525\",\"sale_id\":\"864\",\"product_id\":\"1008\",\"product_code\":\"90431435\",\"product_name\":\"fabiola\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1890.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1580, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"863\",\"date\":\"2022-12-13 11:35:00\",\"reference_no\":\"2440\",\"customer_id\":\"688\",\"customer\":\"Muthomi Karuku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10395.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10395.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"6000.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\":\"52cc4aabdc5360da273eddaf20cf820b97a11d73d99eb6bb5e6c784a25d09e23\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1523\",\"sale_id\":\"863\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1524\",\"sale_id\":\"863\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"zara\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1581, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"862\",\"date\":\"2022-12-13 11:25:00\",\"reference_no\":\"2439\",\"customer_id\":\"687\",\"customer\":\"Francis Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 11:56:28\",\"total_items\":\"250\",\"pos\":\"0\",\"paid\":\"900.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\":\"6f857c2984c0df57b492d05db78e97766080abdc1ddbad771b3d397aecf05049\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1529\",\"sale_id\":\"862\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"250.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"250.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1582, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"861\",\"date\":\"2022-12-13 11:15:00\",\"reference_no\":\"2437\",\"customer_id\":\"686\",\"customer\":\"James  gatugu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"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\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"500.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\":\"2126e96dcc95c638d4b885ea4ec5ac55d5ddb84652c2cf5b1a51344b62e6c0d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1517\",\"sale_id\":\"861\",\"product_id\":\"1066\",\"product_code\":\"23995551\",\"product_name\":\"c.wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1583, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"860\",\"date\":\"2022-12-13 11:10:00\",\"reference_no\":\"2436\",\"customer_id\":\"495\",\"customer\":\"Irene Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-29 11:07:04\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3500.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\":\"23e80277a42d9bc5dd610e58ab06823394f51c821541a4e899ce5845c2a7f0dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1723\",\"sale_id\":\"860\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1724\",\"sale_id\":\"860\",\"product_id\":\"1001\",\"product_code\":\"85058872\",\"product_name\":\"Ahadi seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1725\",\"sale_id\":\"860\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1584, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"852\",\"date\":\"2022-12-13 10:50:00\",\"reference_no\":\"2426\",\"customer_id\":\"335\",\"customer\":\"Antony Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"8750.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\":\"ea2992ec77eb026ce4f2e699c1facd4679f970e9a8dadc7e49429c11a6377b9a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1500\",\"sale_id\":\"852\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1585, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"857\",\"date\":\"2022-12-13 10:45:00\",\"reference_no\":\"2433\",\"customer_id\":\"685\",\"customer\":\"Grace Wangu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2000.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\":\"183811bb2e702b6106d72c002bfde356685ae8fa0e0dae893853858843a466d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1508\",\"sale_id\":\"857\",\"product_id\":\"989\",\"product_code\":\"50584967\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1586, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"856\",\"date\":\"2022-12-13 10:40:00\",\"reference_no\":\"2431\",\"customer_id\":\"684\",\"customer\":\"Joseph Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2560.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\":\"1e138cd4cf6b1a704ebc52096ec103b3802256da0a67f220085bcbf8650deaa3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1505\",\"sale_id\":\"856\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1587, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"855\",\"date\":\"2022-12-13 10:40:00\",\"reference_no\":\"2430\",\"customer_id\":\"683\",\"customer\":\"david muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"6500.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\":\"e7b994679b12d5b2d92a232f59fa0665743ed9110750b23353f513a4e4cb33f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1504\",\"sale_id\":\"855\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1588, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"854\",\"date\":\"2022-12-13 10:35:00\",\"reference_no\":\"2429\",\"customer_id\":\"682\",\"customer\":\"John mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 10:53:27\",\"total_items\":\"181\",\"pos\":\"0\",\"paid\":\"1600.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\":\"68abd45316f84b549f44b02fd628d3c78bfd3fb2de4780b239850cc74d4b1003\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1509\",\"sale_id\":\"854\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1510\",\"sale_id\":\"854\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1511\",\"sale_id\":\"854\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"140.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"420.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"140.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1589, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"853\",\"date\":\"2022-12-13 10:30:00\",\"reference_no\":\"2428\",\"customer_id\":\"584\",\"customer\":\"Simon muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"9aff79fcf99eca7fbb1faa0f261e64deb85a6ea228c5881b884199869eb08d89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1502\",\"sale_id\":\"853\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1590, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"848\",\"date\":\"2022-12-12 12:10:00\",\"reference_no\":\"2421\",\"customer_id\":\"679\",\"customer\":\"Martin Muturi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1682.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1682.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"96\",\"pos\":\"0\",\"paid\":\"1650.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\":\"27c336d49b06dc0a0166f43e117c13e6957dd3f6ea93cc6ac3fe53cd68a3766e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1493\",\"sale_id\":\"848\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1494\",\"sale_id\":\"848\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"95.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"332.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"95.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1591, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"850\",\"date\":\"2022-12-12 10:00:00\",\"reference_no\":\"2423\",\"customer_id\":\"477\",\"customer\":\"George Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"350\",\"pos\":\"0\",\"paid\":\"600.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\":\"2db598bad37cc60190d22ac66c62490def2662ef5823448a2c040763591407ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1496\",\"sale_id\":\"850\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1497\",\"sale_id\":\"850\",\"product_id\":\"1084\",\"product_code\":\"09412470\",\"product_name\":\"Terere pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1498\",\"sale_id\":\"850\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1592, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"849\",\"date\":\"2022-12-12 09:50:00\",\"reference_no\":\"2422\",\"customer_id\":\"680\",\"customer\":\"Alex  maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"722a0c550f0a0e59461dff8585a111e3e91e264feaa68f7c525a19150fbaf3e6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1495\",\"sale_id\":\"849\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1593, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"847\",\"date\":\"2022-12-12 09:05:00\",\"reference_no\":\"2419\",\"customer_id\":\"652\",\"customer\":\"Livingstone Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"153\",\"pos\":\"0\",\"paid\":\"2900.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\":\"4c3a502dde107c8cc6b3869b3ac4c0c4ad8562e496e84e4809c709acf093a1b3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1491\",\"sale_id\":\"847\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1492\",\"sale_id\":\"847\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1594, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"846\",\"date\":\"2022-12-12 08:50:00\",\"reference_no\":\"2418\",\"customer_id\":\"596\",\"customer\":\"John Munoru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"75995.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"75995.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"69\",\"pos\":\"0\",\"paid\":\"45000.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\":\"e39bea7e18edd053314315a6c1abea61e487d0e748bdeb8ea49c6c2ca177dc53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1487\",\"sale_id\":\"846\",\"product_id\":\"1065\",\"product_code\":\"85748817\",\"product_name\":\"Bigrock\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1488\",\"sale_id\":\"846\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"55.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"55.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1489\",\"sale_id\":\"846\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ranger\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"12800.0000\",\"unit_price\":\"12800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"12800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1490\",\"sale_id\":\"846\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ranger \",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"21300.0000\",\"unit_price\":\"21300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"21300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1595, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"845\",\"date\":\"2022-12-10 16:55:00\",\"reference_no\":\"2417\",\"customer_id\":\"678\",\"customer\":\"Anna Nyawira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"9e2fbd0527762f26274bb4206623d223dfb7ee25667772e20515900e55089778\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1485\",\"sale_id\":\"845\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1596, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"844\",\"date\":\"2022-12-10 16:50:00\",\"reference_no\":\"2416\",\"customer_id\":\"137\",\"customer\":\"Jeremiah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"595.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"595.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"305\",\"pos\":\"0\",\"paid\":\"600.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\":\"18931c663f8bcfbf88deec3b68227bbd4d9971dd4b91968f8145833b089cde09\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1483\",\"sale_id\":\"844\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"275.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"275.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1484\",\"sale_id\":\"844\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1597, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"843\",\"date\":\"2022-12-10 16:45:00\",\"reference_no\":\"2415\",\"customer_id\":\"496\",\"customer\":\"Damaris\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"23540.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"20200.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\":\"d88b27349854ec34ad30c87bbb036d8d517a68ed6a4daeef0f5e7ff71061b102\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1480\",\"sale_id\":\"843\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1481\",\"sale_id\":\"843\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1482\",\"sale_id\":\"843\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1598, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"842\",\"date\":\"2022-12-10 16:45:00\",\"reference_no\":\"2414\",\"customer_id\":\"677\",\"customer\":\"Jane Waithira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"120\",\"pos\":\"0\",\"paid\":\"3000.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\":\"cb819227381939c1b8cee6bec1bcc6dac83d4c42547888a26550f9743c142c01\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1477\",\"sale_id\":\"842\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1478\",\"sale_id\":\"842\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1479\",\"sale_id\":\"842\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1599, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"841\",\"date\":\"2022-12-10 15:55:00\",\"reference_no\":\"2413\",\"customer_id\":\"467\",\"customer\":\"Lufas Ndaini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6930.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\":\"7380f6cde5f50ad7d8a208415e7cd09ff5e643969ce20ba9d88b405cc6f75914\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1476\",\"sale_id\":\"841\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1600, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"840\",\"date\":\"2022-12-10 15:50:00\",\"reference_no\":\"2412\",\"customer_id\":\"676\",\"customer\":\"Julius Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"7185ae52a895a45acad31a2fa21b08b0805e2ec5597be0ae1250e19ec3d40f89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1475\",\"sale_id\":\"840\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1601, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"839\",\"date\":\"2022-12-10 15:45:00\",\"reference_no\":\"2411\",\"customer_id\":\"675\",\"customer\":\"Purity Wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1530.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"151\",\"pos\":\"0\",\"paid\":\"1450.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\":\"31f004accbbd6d14cefa4102dc050279e3a49f97a6edeb803a65ff91780cdcdd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1472\",\"sale_id\":\"839\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1473\",\"sale_id\":\"839\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1474\",\"sale_id\":\"839\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1602, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"838\",\"date\":\"2022-12-10 15:25:00\",\"reference_no\":\"2410\",\"customer_id\":\"587\",\"customer\":\"kitusa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"32\",\"pos\":\"0\",\"paid\":\"21000.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\":\"0ba87bba9efa689ba4fb45459d45d8f26f62663b49aa4859e37aa65f8e2afbc0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1469\",\"sale_id\":\"838\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1470\",\"sale_id\":\"838\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1471\",\"sale_id\":\"838\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"zara\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1603, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"837\",\"date\":\"2022-12-10 15:20:00\",\"reference_no\":\"2409\",\"customer_id\":\"674\",\"customer\":\"Benson Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"500\",\"pos\":\"0\",\"paid\":\"1000.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\":\"28257e97ef3eb2a598d038af2efaf4c1acdeaae0172c3178b2296c5c30b7355b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1468\",\"sale_id\":\"837\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1604, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"830\",\"date\":\"2022-12-09 12:40:00\",\"reference_no\":\"2300\",\"customer_id\":\"137\",\"customer\":\"Jeremiah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"250\",\"pos\":\"0\",\"paid\":\"500.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\":\"4804bddee0f9b5f771df58f707adc090fb62758c663be59656e249e66c2ac897\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1461\",\"sale_id\":\"830\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"250.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"250.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1605, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"829\",\"date\":\"2022-12-09 12:35:00\",\"reference_no\":\"2298\",\"customer_id\":\"671\",\"customer\":\"Isaac Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"1ad46701a40bec68dccf479ed6cf88175cdbd803a185b96c24eecc5f43df5a96\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1459\",\"sale_id\":\"829\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1606, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"828\",\"date\":\"2022-12-09 12:30:00\",\"reference_no\":\"2297\",\"customer_id\":\"670\",\"customer\":\"Cathrine\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"600.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\":\"f940fae295925d5196356204d1d9889043ecb4e4d526e00d59626c208f885dfb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1458\",\"sale_id\":\"828\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1607, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"827\",\"date\":\"2022-12-09 12:30:00\",\"reference_no\":\"2296\",\"customer_id\":\"669\",\"customer\":\"Antony Kabinga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"30500.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\":\"04525cd53ae9de967a4004d203da22c47319495aa4d27367bd41401d95685aba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1457\",\"sale_id\":\"827\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1608, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"836\",\"date\":\"2022-12-09 12:20:00\",\"reference_no\":\"2408\",\"customer_id\":\"660\",\"customer\":\"Joseph maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"3ad0e52be26472f79f6d2902f72c9868125cdfc54d55f297618be41d8992ebd5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1467\",\"sale_id\":\"836\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1609, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"835\",\"date\":\"2022-12-09 12:20:00\",\"reference_no\":\"2407\",\"customer_id\":\"499\",\"customer\":\"Gilbert Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"f4fc08143fed5873929c27f699a5276af413653eb2081e1706d0dc84e72fa976\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1466\",\"sale_id\":\"835\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1610, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"825\",\"date\":\"2022-12-09 12:15:00\",\"reference_no\":\"2294\",\"customer_id\":\"212\",\"customer\":\"Ezekiel munguti\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"9000.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\":\"cc34f4046421c47706ecfb4a39b4ceee3212f08b8c7a4566aac87e9f4487d3fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1454\",\"sale_id\":\"825\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1611, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"824\",\"date\":\"2022-12-09 12:10:00\",\"reference_no\":\"2293\",\"customer_id\":\"477\",\"customer\":\"George Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"300\",\"pos\":\"0\",\"paid\":\"450.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\":\"6797ab3b71c6101c85ab6c31268e0087824dc3d8262dbfb6479b6a96de0baa07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1451\",\"sale_id\":\"824\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1452\",\"sale_id\":\"824\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1453\",\"sale_id\":\"824\",\"product_id\":\"1084\",\"product_code\":\"09412470\",\"product_name\":\"Terere pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1612, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"823\",\"date\":\"2022-12-09 12:10:00\",\"reference_no\":\"2291\",\"customer_id\":\"668\",\"customer\":\"Moses Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"3500.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\":\"32b2097963a915d658c4db40ec0d737d41289e35df4a65bc4897a9d838c3e941\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1450\",\"sale_id\":\"823\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1613, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"834\",\"date\":\"2022-12-09 11:45:00\",\"reference_no\":\"2405\",\"customer_id\":\"462\",\"customer\":\"Peter Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"300\",\"pos\":\"0\",\"paid\":\"1000.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\":\"973dd173f3ef325c08eda6595863e7a8e6c389bae28cf83ea3cf33ee3a0cbd28\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1465\",\"sale_id\":\"834\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1614, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"833\",\"date\":\"2022-12-09 11:40:00\",\"reference_no\":\"2404\",\"customer_id\":\"673\",\"customer\":\"William Kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"3818d8ebd47c3320b9bbf90d60ae17965ba290aac6691c394e7dacfef7d6c7dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1464\",\"sale_id\":\"833\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1615, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"832\",\"date\":\"2022-12-09 11:40:00\",\"reference_no\":\"2403\",\"customer_id\":\"672\",\"customer\":\"Jane Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"1050.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\":\"19b5119566b0eb6308e7e46902f31954a9f51d77ecaf7e2274ba980b75ba6ae3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1463\",\"sale_id\":\"832\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1616, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"831\",\"date\":\"2022-12-09 10:55:00\",\"reference_no\":\"2401\",\"customer_id\":\"657\",\"customer\":\"Ephantus\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"ddbc8990e7958dc07fad38dfeeed036385676738955510c166d0670778e64d03\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1462\",\"sale_id\":\"831\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1617, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"890\",\"date\":\"2022-12-09 10:45:00\",\"reference_no\":\"SALE0112\",\"customer_id\":\"698\",\"customer\":\"Antony Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4800.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\":\"bb800976b6299ac1bf206b9b35630e63d17495d0822fac44284590b13c88ef56\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1574\",\"sale_id\":\"890\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1618, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"826\",\"date\":\"2022-12-09 10:20:00\",\"reference_no\":\"2295\",\"customer_id\":\"179\",\"customer\":\"Peter Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49470.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49470.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"40\",\"pos\":\"0\",\"paid\":\"49470.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\":\"b2aeaa8a339b7f033d04f2c38303963d6fc1afc5a16b903e55635a80f918642b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1455\",\"sale_id\":\"826\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"39.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"39.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1456\",\"sale_id\":\"826\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"ansal\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"24900.0000\",\"unit_price\":\"24900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"24900.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1619, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"810\",\"date\":\"2022-12-08 16:30:00\",\"reference_no\":\"2280\",\"customer_id\":\"157\",\"customer\":\"Nester Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"93\",\"pos\":\"0\",\"paid\":\"1850.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\":\"0b03c65c343a3e3976bcb503d47dd1524b328269f19b39d7e90e91e22c5ab60c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1428\",\"sale_id\":\"810\",\"product_id\":\"970\",\"product_code\":\"93591242\",\"product_name\":\"pawpaw vegaf1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"93.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1860.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"93.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1620, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"811\",\"date\":\"2022-12-08 16:30:00\",\"reference_no\":\"2279\",\"customer_id\":\"663\",\"customer\":\"Anderson gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7400.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\":\"937acabf63abc592e7694626d5f6596c6933d91dba9921e2d08a542da97de5af\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1429\",\"sale_id\":\"811\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1430\",\"sale_id\":\"811\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1621, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"809\",\"date\":\"2022-12-08 16:30:00\",\"reference_no\":\"2277\",\"customer_id\":\"582\",\"customer\":\"Eliud muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2400.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\":\"e99ea2178fcdd7170c896ec1ab0bc53182f06a216df7a0de40b255a45310c03f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1427\",\"sale_id\":\"809\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1622, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"808\",\"date\":\"2022-12-08 16:25:00\",\"reference_no\":\"2276\",\"customer_id\":\"662\",\"customer\":\"Jane mahiu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"695.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"695.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"430\",\"pos\":\"0\",\"paid\":\"600.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\":\"baa79ea63d2eae86c83d85c61992e1cc94ad6afd91efd97d726cc4637057de21\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1423\",\"sale_id\":\"808\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1424\",\"sale_id\":\"808\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1425\",\"sale_id\":\"808\",\"product_id\":\"1084\",\"product_code\":\"09412470\",\"product_name\":\"Terere pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1623, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"822\",\"date\":\"2022-12-08 12:05:00\",\"reference_no\":\"2290\",\"customer_id\":\"640\",\"customer\":\"Teresia Njoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"450.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\":\"eb33fecaad44f5712e4e452808d536cd0def98024769d9e2b420e7a7f95702bd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1449\",\"sale_id\":\"822\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1624, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"819\",\"date\":\"2022-12-08 12:00:00\",\"reference_no\":\"2289\",\"customer_id\":\"667\",\"customer\":\"Robert Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"78a9a6ee701022802b382f1e0a147297beb583fb0fa1bfc367747ab9fd0d1e35\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1444\",\"sale_id\":\"819\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1625, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"821\",\"date\":\"2022-12-08 12:00:00\",\"reference_no\":\"2288\",\"customer_id\":\"667\",\"customer\":\"Robert Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10830.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3900.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\":\"7c71a533b8ffa041b69c527d4bedf6657eeda4a4c154696f2754a67bdeae6576\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1447\",\"sale_id\":\"821\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1448\",\"sale_id\":\"821\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"nova seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3900.0000\",\"unit_price\":\"3900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1626, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"817\",\"date\":\"2022-12-08 11:50:00\",\"reference_no\":\"2287\",\"customer_id\":\"354\",\"customer\":\"Danson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"1800.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\":\"e9f4399738e62a4a7ea0b78e2936127300045b2deea810edd66f7234bdda5bdc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1439\",\"sale_id\":\"817\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1627, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"815\",\"date\":\"2022-12-08 11:45:00\",\"reference_no\":\"2284\",\"customer_id\":\"665\",\"customer\":\"Danson Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"255.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"255.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"170\",\"pos\":\"0\",\"paid\":\"250.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\":\"e6ad666b721c6d86ddbec1fd5b234b5ee6c952c3d6bb217bff63012964ee18d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1437\",\"sale_id\":\"815\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"170.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"255.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"170.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1628, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"814\",\"date\":\"2022-12-08 11:35:00\",\"reference_no\":\"2283\",\"customer_id\":\"664\",\"customer\":\"John Ngumbo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"525.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"525.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-10 11:39:22\",\"total_items\":\"175\",\"pos\":\"0\",\"paid\":\"220.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\":\"5fea05dab726da8fda0b663a16882c442b129401d6ec7d76a6c6c2bf22945902\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1435\",\"sale_id\":\"814\",\"product_id\":\"1085\",\"product_code\":\"62333113\",\"product_name\":\"Broccoli pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1436\",\"sale_id\":\"814\",\"product_id\":\"1086\",\"product_code\":\"71784643\",\"product_name\":\"cauliflower pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"145.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"435.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"145.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1629, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"813\",\"date\":\"2022-12-08 11:15:00\",\"reference_no\":\"2282\",\"customer_id\":\"302\",\"customer\":\"Paul  Kirusa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"449850347ddaee4fbfcbfe9f041b6d406c2f2a38f8dc1148cf8a5035ebff05a0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1432\",\"sale_id\":\"813\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1630, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"812\",\"date\":\"2022-12-08 11:10:00\",\"reference_no\":\"2281\",\"customer_id\":\"261\",\"customer\":\"Francis Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"28\",\"pos\":\"0\",\"paid\":\"20000.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\":\"75bf533c9490cd097e1adde97f0581442d0f260839b66592512c7c17e395a653\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1431\",\"sale_id\":\"812\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1631, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"816\",\"date\":\"2022-12-08 10:45:00\",\"reference_no\":\"2285\",\"customer_id\":\"666\",\"customer\":\"patrick kareithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2150.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\":\"a262e60c5463e281400873d19afdbe68bb09509c0c9dec66eacead8820779d86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1438\",\"sale_id\":\"816\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1632, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"807\",\"date\":\"2022-12-07 16:20:00\",\"reference_no\":\"2275\",\"customer_id\":\"624\",\"customer\":\"Gabriel Muthigani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-20 09:33:30\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"15000.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\":\"9ccd5725cb0c8e879b383e2ad7cb9b327c7e26305ed59596f7bc293fef0b2e14\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1597\",\"sale_id\":\"807\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1598\",\"sale_id\":\"807\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1633, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"806\",\"date\":\"2022-12-07 16:15:00\",\"reference_no\":\"2274\",\"customer_id\":\"379\",\"customer\":\"Charles  Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"66172bc087b1a7abde9dab6e66742f41846cbf6b5c5e2b146b97dfbd6acf2d17\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1420\",\"sale_id\":\"806\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1634, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"805\",\"date\":\"2022-12-07 16:10:00\",\"reference_no\":\"2272\",\"customer_id\":\"652\",\"customer\":\"Livingstone Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2100.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\":\"dc8a76e2f643f5551ee9b2b551464489d044e9346e45b314bb82ee1b4e35b537\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1419\",\"sale_id\":\"805\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1635, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"804\",\"date\":\"2022-12-07 16:05:00\",\"reference_no\":\"2271\",\"customer_id\":\"657\",\"customer\":\"Ephantus\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"28da667d4ab19332a14417b2db9b37fde9d8c3131d96c1f8220918bd559b5a4d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1418\",\"sale_id\":\"804\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1636, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"803\",\"date\":\"2022-12-07 16:05:00\",\"reference_no\":\"2270\",\"customer_id\":\"661\",\"customer\":\"peterson Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-09 16:30:40\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"11500.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\":\"c3ae871beedc86a299f291bc0300aa2d75ef81239d62d8a031a05ef901516a27\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1426\",\"sale_id\":\"803\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1637, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"802\",\"date\":\"2022-12-07 16:00:00\",\"reference_no\":\"2269\",\"customer_id\":\"441\",\"customer\":\"Gabriel Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1900.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\":\"25b7828ba2244bf9f44348e16d8b39b812997c04d6733a261f2427f260a20320\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1415\",\"sale_id\":\"802\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1416\",\"sale_id\":\"802\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1638, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"801\",\"date\":\"2022-12-07 15:55:00\",\"reference_no\":\"2268\",\"customer_id\":\"499\",\"customer\":\"Gilbert Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5130.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5130.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"5080.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\":\"ea904b0be5f6158620c74f2ee9ab07c43a375dab40c1185e8ecd9fd02ffcd1c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1413\",\"sale_id\":\"801\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1414\",\"sale_id\":\"801\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1639, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"800\",\"date\":\"2022-12-07 15:55:00\",\"reference_no\":\"2267\",\"customer_id\":\"660\",\"customer\":\"Joseph maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"03b4d464ec83f9418525e58b6640b5d7ee3873caee75dd133e2f8e51caf15786\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1412\",\"sale_id\":\"800\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1640, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"799\",\"date\":\"2022-12-07 15:50:00\",\"reference_no\":\"2266\",\"customer_id\":\"659\",\"customer\":\"David mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2700.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\":\"9a8b5f7111f8109798d8f2fdf75a093c10896ea946424b7f41c28ff5842ac5c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1411\",\"sale_id\":\"799\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1641, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"798\",\"date\":\"2022-12-07 15:40:00\",\"reference_no\":\"2265\",\"customer_id\":\"658\",\"customer\":\"Lydiah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"102.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"102.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"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\":\"57a6ee1623c6809f69697ccd3b4373a037dec0fb25cb88ddd6f5ad0f4da54e2e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1409\",\"sale_id\":\"798\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1410\",\"sale_id\":\"798\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1642, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"797\",\"date\":\"2022-12-07 15:35:00\",\"reference_no\":\"2264\",\"customer_id\":\"654\",\"customer\":\"Henry Migwi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"180\",\"pos\":\"0\",\"paid\":\"540.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\":\"ed85155e5d3c1a11b65f422ed3c7f7337453b13946866c5766ede2c3f8feb71b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1408\",\"sale_id\":\"797\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"180.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"180.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1643, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"796\",\"date\":\"2022-12-07 15:35:00\",\"reference_no\":\"2263\",\"customer_id\":\"577\",\"customer\":\"John Manegene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"210.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"210.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-09 15:38:36\",\"total_items\":\"70\",\"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\":\"fc7d61c387b099ccdc70488f0ac7adb548ad838f823d71a17eaacea8b2890068\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1407\",\"sale_id\":\"796\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"210.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1644, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"795\",\"date\":\"2022-12-07 15:30:00\",\"reference_no\":\"2262\",\"customer_id\":\"657\",\"customer\":\"Ephantus\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"22762c68dbe32c94a8341704ac36060a846ab2b5d505cf0c7f32e62291571fd7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1405\",\"sale_id\":\"795\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1645, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"794\",\"date\":\"2022-12-07 15:10:00\",\"reference_no\":\"2261\",\"customer_id\":\"656\",\"customer\":\"Joseph muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"2000.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\":\"af118b4a35e647a8a9da9fd0dffb16fd269ab147a5de0288613ac374203b7d72\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1404\",\"sale_id\":\"794\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1646, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"793\",\"date\":\"2022-12-07 12:10:00\",\"reference_no\":\"2260\",\"customer_id\":\"655\",\"customer\":\"Kenneday Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2860.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\":\"a6379ebdea8cf164eec208e32e4bd2d7adae0e733d775471a6bfd066de07e2c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1402\",\"sale_id\":\"793\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1403\",\"sale_id\":\"793\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1647, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"792\",\"date\":\"2022-12-07 12:10:00\",\"reference_no\":\"2259\",\"customer_id\":\"654\",\"customer\":\"Henry Migwi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"21a47e127c7b1eae463fc7af912cdebb446cceaf91170c4d22615257a8150e18\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1400\",\"sale_id\":\"792\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1401\",\"sale_id\":\"792\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1648, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"791\",\"date\":\"2022-12-07 12:05:00\",\"reference_no\":\"2258\",\"customer_id\":\"230\",\"customer\":\"Samuel waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7360.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7360.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7300.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\":\"c793d2f686955ea0e54113d8fca735bc927f1bbabc1f36ea61a506214aaee55f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1399\",\"sale_id\":\"791\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7360.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1649, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"790\",\"date\":\"2022-12-07 11:05:00\",\"reference_no\":\"2257\",\"customer_id\":\"534\",\"customer\":\"Edwin Karuri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"f9f55605346e746216d26952e6ca2e7061c7ab6a47b08e2ffde37d84ec96104d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1398\",\"sale_id\":\"790\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1650, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"789\",\"date\":\"2022-12-07 11:05:00\",\"reference_no\":\"2256\",\"customer_id\":\"394\",\"customer\":\"Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"0c3388814fc0bd1be730f42fac12027092de6723bb043fb08570af151a311f9e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1397\",\"sale_id\":\"789\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1651, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"786\",\"date\":\"2022-12-06 16:30:00\",\"reference_no\":\"2349\",\"customer_id\":\"651\",\"customer\":\"Ann Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4800.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\":\"63889da95e515cc177f88df2a2e0a3c5a86b6366866a95ca28b8607b452a7fb4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1388\",\"sale_id\":\"786\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1652, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"785\",\"date\":\"2022-12-06 16:25:00\",\"reference_no\":\"2348\",\"customer_id\":\"650\",\"customer\":\"Henry Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2510.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-08 16:33:25\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2480.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\":\"62e093f82f4b3da9ac843b1e356fd18218b60d37ff7fad5de4248dce07b6716a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1389\",\"sale_id\":\"785\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1390\",\"sale_id\":\"785\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1391\",\"sale_id\":\"785\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1653, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"784\",\"date\":\"2022-12-06 16:25:00\",\"reference_no\":\"2347\",\"customer_id\":\"649\",\"customer\":\"Ann Muthoni (david)\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"5000.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\":\"c5343bf6f95cef3f767b3847cf1408e178be59b865ceb015656b980fa0d467ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1381\",\"sale_id\":\"784\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"23.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1654, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"788\",\"date\":\"2022-12-06 10:50:00\",\"reference_no\":\"2252\",\"customer_id\":\"653\",\"customer\":\"Jackson Kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"0ce7b3edec116ebc68f0a757218da4e57f2dd40f775ff668b9b92a0aebdd0b41\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1394\",\"sale_id\":\"788\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1655, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"787\",\"date\":\"2022-12-06 10:45:00\",\"reference_no\":\"2251\",\"customer_id\":\"652\",\"customer\":\"Livingstone Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5100.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\":\"8cb548ec5b17d84a3bb52ee96c358793b8fddeae643278cd3b562569b2761796\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1392\",\"sale_id\":\"787\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1393\",\"sale_id\":\"787\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1656, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"777\",\"date\":\"2022-12-05 16:50:00\",\"reference_no\":\"2337\",\"customer_id\":\"619\",\"customer\":\"John Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4650.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\":\"cca3048c6b0a99273b3d6e4cd4d41781e185f81e4f7c2bf50a406cf3a593fc8b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1369\",\"sale_id\":\"777\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1657, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"776\",\"date\":\"2022-12-05 16:50:00\",\"reference_no\":\"2335\",\"customer_id\":\"395\",\"customer\":\"Geoffrey Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2520.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\":\"efaf0ec60f8f378f7c939b7b1dd31f296f17bec3f379ed541ff685f829bcc1e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1365\",\"sale_id\":\"776\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1658, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"780\",\"date\":\"2022-12-05 16:45:00\",\"reference_no\":\"2341\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"5bf5bc0967e36baf9792e80718f448eabbcc9903a7701c4455eee5a5dda31ed5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1372\",\"sale_id\":\"780\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1659, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"779\",\"date\":\"2022-12-05 16:45:00\",\"reference_no\":\"2339\",\"customer_id\":\"638\",\"customer\":\"Alex Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"f035985103ae22714c55c251c628f8a9a1927dab4094da2888c9af3975bcd151\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1371\",\"sale_id\":\"779\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1660, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"775\",\"date\":\"2022-12-05 16:25:00\",\"reference_no\":\"2334\",\"customer_id\":\"376\",\"customer\":\"Evans wamungunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1350.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\":\"7ad176700ef7d89a5f15ab67776c57f1069840635fa0177eaccf6b354a898038\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1364\",\"sale_id\":\"775\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1661, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"774\",\"date\":\"2022-12-05 16:25:00\",\"reference_no\":\"2333\",\"customer_id\":\"647\",\"customer\":\"willys muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"669daa87f094a3b6548a2740229501d85a07a2efaa85f8b330b043ebe5409503\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1363\",\"sale_id\":\"774\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1662, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"783\",\"date\":\"2022-12-05 16:20:00\",\"reference_no\":\"2345\",\"customer_id\":\"386\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"900.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\":\"66520e0dcd760785c8cc4e240b1d774d53baf0f3999efcc27275f218794c7bdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1380\",\"sale_id\":\"783\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1663, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"782\",\"date\":\"2022-12-05 16:20:00\",\"reference_no\":\"2344\",\"customer_id\":\"648\",\"customer\":\"Mugo Njiiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"232\",\"pos\":\"0\",\"paid\":\"2000.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\":\"e548d662962a5650f74d3fba5889084805b51f9a5cbc445f2446431e26a3930a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1376\",\"sale_id\":\"782\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"120.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"120.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1377\",\"sale_id\":\"782\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"180.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"90.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1378\",\"sale_id\":\"782\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1379\",\"sale_id\":\"782\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1664, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"778\",\"date\":\"2022-12-05 16:00:00\",\"reference_no\":\"2338\",\"customer_id\":\"428\",\"customer\":\"Stanly Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"aa78331fff82fb6afc4bb991813dea44a81ef66b6a48691a4c6849fa9ae20fc2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1370\",\"sale_id\":\"778\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1665, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"772\",\"date\":\"2022-12-05 16:00:00\",\"reference_no\":\"2332\",\"customer_id\":\"184\",\"customer\":\"Benard irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"dbeadbf238a1d23727fe4b868d01be75ffc87338ffe4bd788702528dd7a22752\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1361\",\"sale_id\":\"772\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1666, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"771\",\"date\":\"2022-12-05 15:50:00\",\"reference_no\":\"2330\",\"customer_id\":\"646\",\"customer\":\"Stephen Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"84282255c99eb623dad4676673eab8898b0bc48d8cc6e6131786a0d64a64abbe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1360\",\"sale_id\":\"771\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1667, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"781\",\"date\":\"2022-12-05 15:10:00\",\"reference_no\":\"2342\",\"customer_id\":\"184\",\"customer\":\"Benard irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"2fe4135dba4b9e577698facf57a88a73d5ea8392d44ee8c8dd9882dfe8354b4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1373\",\"sale_id\":\"781\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1668, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"773\",\"date\":\"2022-12-05 10:45:00\",\"reference_no\":\"2331\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1575.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1575.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1440.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\":\"b259269d5a66aad2fd908969e52db6cb81f5eb769a9bd0ac35855f6444496b57\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1362\",\"sale_id\":\"773\",\"product_id\":\"1082\",\"product_code\":\"37214792\",\"product_name\":\"Predi f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1669, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"770\",\"date\":\"2022-12-03 15:50:00\",\"reference_no\":\"2329\",\"customer_id\":\"645\",\"customer\":\"Mary Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"175.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"175.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"170.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\":\"1a28401ba08ad8172ce97e04936b690225755f1bdfb3ca1f2ab13a5f06f5d607\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1358\",\"sale_id\":\"770\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1359\",\"sale_id\":\"770\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1670, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"769\",\"date\":\"2022-12-03 15:45:00\",\"reference_no\":\"2328\",\"customer_id\":\"281\",\"customer\":\"James Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1260.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\":\"6a29c1c0cf400cf4d8bffde1d8b249c0776ac68e53b663ac0e0d9e9c58d90c2d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1357\",\"sale_id\":\"769\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1671, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"767\",\"date\":\"2022-12-03 15:45:00\",\"reference_no\":\"2327\",\"customer_id\":\"616\",\"customer\":\"Charles Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"31500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-19 11:54:48\",\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"13000.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\":\"768dd14ff244d701c4f76d1dade8f16640c36dedf3a610021d02f7acbfc9508b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1589\",\"sale_id\":\"767\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1590\",\"sale_id\":\"767\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1672, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"766\",\"date\":\"2022-12-03 15:40:00\",\"reference_no\":\"2325\",\"customer_id\":\"644\",\"customer\":\"Venasio wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"150.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\":\"d1c88201b9be7919a2222d5b5eb892778df9271cb2d6a420c7212e0c2ee68be2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1354\",\"sale_id\":\"766\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1673, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"768\",\"date\":\"2022-12-02 15:45:00\",\"reference_no\":\"2323\",\"customer_id\":\"481\",\"customer\":\"Arthur Miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7800.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\":\"af22057de51e64b3af7d4c17e7a41713a16173f97e1139f5033e518f4821860c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1356\",\"sale_id\":\"768\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1674, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"765\",\"date\":\"2022-12-02 15:35:00\",\"reference_no\":\"2324\",\"customer_id\":\"636\",\"customer\":\"Albert\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-22 15:37:56\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"13000.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\":\"ff4155633f2d8ce9ca1def106ae7748067ad2dd8a539eabea422ab6301f11afc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1633\",\"sale_id\":\"765\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1675, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"764\",\"date\":\"2022-12-02 15:30:00\",\"reference_no\":\"2322\",\"customer_id\":\"637\",\"customer\":\"John Kinyua cini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-15 15:29:11\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4800.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\":\"b0a1d4aaef350916276adad453ae522a5d6192e9874776d2efc2898f941fa6f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1541\",\"sale_id\":\"764\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1676, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"763\",\"date\":\"2022-12-02 12:45:00\",\"reference_no\":\"2321\",\"customer_id\":\"139\",\"customer\":\"Dennis Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"1000.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\":\"d88bdba74b307d58c724fb8a4852886e814e0d14715bdc57aa1c3e413c602afc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1344\",\"sale_id\":\"763\",\"product_id\":\"1074\",\"product_code\":\"59488939\",\"product_name\":\"Bareto f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1677, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"761\",\"date\":\"2022-12-02 12:30:00\",\"reference_no\":\"2318\",\"customer_id\":\"629\",\"customer\":\"Annrose Njoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"9700.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\":\"cc629a184bc1e669a09563f886177b09b07cc16909f0359de0fb69a5d215733f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1341\",\"sale_id\":\"761\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1342\",\"sale_id\":\"761\",\"product_id\":\"1081\",\"product_code\":\"71092465\",\"product_name\":\"Rosemary\",\"product_type\":\"service\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1678, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"760\",\"date\":\"2022-12-02 12:25:00\",\"reference_no\":\"2317\",\"customer_id\":\"635\",\"customer\":\"Clement Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-22 15:55:45\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"c86b68986d946bc044d5726a5e486b6f2f056ede38104ce0d44beeecade81c55\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1639\",\"sale_id\":\"760\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1679, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"759\",\"date\":\"2022-12-02 12:25:00\",\"reference_no\":\"2316\",\"customer_id\":\"635\",\"customer\":\"Clement Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"500\",\"pos\":\"0\",\"paid\":\"1500.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\":\"a100e6ed0f690a29f9e9fea164845c497050999665eb9d25c93810e57ed6af8e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1339\",\"sale_id\":\"759\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1680, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"758\",\"date\":\"2022-12-02 11:55:00\",\"reference_no\":\"2313\",\"customer_id\":\"394\",\"customer\":\"Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"444e9c1e5732b5f22acefcaec52489257a68723684b233ff260bc5412271037e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1338\",\"sale_id\":\"758\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1681, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"757\",\"date\":\"2022-12-02 11:50:00\",\"reference_no\":\"2312\",\"customer_id\":\"613\",\"customer\":\"Joseph Simba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7240.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\":\"ac41576c0118c2604c404b504636a50ad321af3ef876bd27586d3f295bcd99cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1337\",\"sale_id\":\"757\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1682, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"756\",\"date\":\"2022-12-02 11:50:00\",\"reference_no\":\"2311\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24570.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24570.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"39\",\"pos\":\"0\",\"paid\":\"26070.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\":\"ff98e416910106ee3a4e41ef91023c3ce2a3b8b2b326ca0df3453df25903c6f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1336\",\"sale_id\":\"756\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"39.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"39.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1683, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"755\",\"date\":\"2022-12-02 11:50:00\",\"reference_no\":\"2310\",\"customer_id\":\"642\",\"customer\":\"Purity Karigi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"383e08e5a161de3232579fded03e90e45914db83bf41513286b633ed497ab1ca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1335\",\"sale_id\":\"755\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1684, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"754\",\"date\":\"2022-12-02 11:25:00\",\"reference_no\":\"2309\",\"customer_id\":\"641\",\"customer\":\"Gideon Kisini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23760.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"23760.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"22000.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\":\"d1e9c61d017a786d0a76f79f93a3f04f5d6ed724c50b7d9ee6af5139d3f0f214\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1334\",\"sale_id\":\"754\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23760.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1685, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"762\",\"date\":\"2022-12-02 06:40:00\",\"reference_no\":\"2320\",\"customer_id\":\"643\",\"customer\":\"Emma Mucora\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"750.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\":\"a123e114899c971d70ede7dd7b9969e51a04f8d4628c1365f619ff913351d592\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1343\",\"sale_id\":\"762\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1686, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"750\",\"date\":\"2022-12-01 17:00:00\",\"reference_no\":\"2301\",\"customer_id\":\"552\",\"customer\":\"Amos Wamugunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1550.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"501\",\"pos\":\"0\",\"paid\":\"1500.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\":\"d9e57174a4f9ee65c4d1de40a2b73747ca7811f3c1884060f097b29c26ecb452\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1329\",\"sale_id\":\"750\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1330\",\"sale_id\":\"750\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1687, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"749\",\"date\":\"2022-12-01 12:35:00\",\"reference_no\":\"2305\",\"customer_id\":\"639\",\"customer\":\"Simon Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3240.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\":\"d3bebe3c8ca05221464c2d50bb2fbd59073ba7ff8f788b6d19e757c04524acda\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1326\",\"sale_id\":\"749\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1688, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"748\",\"date\":\"2022-12-01 12:30:00\",\"reference_no\":\"2304\",\"customer_id\":\"542\",\"customer\":\"Benson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"11d5c4a12b83699669802715d918912e15a403e6ca4f9aae2ec1369fb3591154\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1324\",\"sale_id\":\"748\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1325\",\"sale_id\":\"748\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1689, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"747\",\"date\":\"2022-12-01 12:30:00\",\"reference_no\":\"2303\",\"customer_id\":\"633\",\"customer\":\"Robert Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"25000.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\":\"b60e22a0d6dffec0c0255770c6fe6ce7355808e8146ceefeb6fb6432f7d72e2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1323\",\"sale_id\":\"747\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"27000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1690, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"752\",\"date\":\"2022-12-01 11:15:00\",\"reference_no\":\"2306\",\"customer_id\":\"583\",\"customer\":\"John Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"29\",\"pos\":\"0\",\"paid\":\"17000.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\":\"e38d99acaef383f2e42f5c35d1b5c1e8880fecf105cade561b1f581788414246\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1332\",\"sale_id\":\"752\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"29.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"29.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1691, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"751\",\"date\":\"2022-12-01 11:10:00\",\"reference_no\":\"2307\",\"customer_id\":\"640\",\"customer\":\"Teresia Njoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"27\",\"pos\":\"0\",\"paid\":\"4050.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\":\"895ff617e952663440c78001bb9363963ca7a14c11fce52279ace65a2acaa9b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1331\",\"sale_id\":\"751\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"27.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1692, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"746\",\"date\":\"2022-12-01 10:45:00\",\"reference_no\":\"2250\",\"customer_id\":\"580\",\"customer\":\"James Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1880.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1880.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1850.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\":\"bc6b24974578f9cd0e9955902e139d0a49d35c93ebf7ab330b82bcaa5b3f56c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1321\",\"sale_id\":\"746\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1322\",\"sale_id\":\"746\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1693, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"744\",\"date\":\"2022-12-01 10:40:00\",\"reference_no\":\"2249\",\"customer_id\":\"452\",\"customer\":\"Gerald Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3450.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\":\"688a7667a8530d4502c1ebe3e70c7cccb8938f8b11b1f66c13d3152989fdab9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1318\",\"sale_id\":\"744\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1694, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"741\",\"date\":\"2022-11-30 12:00:00\",\"reference_no\":\"2248\",\"customer_id\":\"336\",\"customer\":\"Michael Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"750.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\":\"d4f58934297ae1719087a097887f4434dbaa9a1ae2bf9e084977d8d27c12bca1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1315\",\"sale_id\":\"741\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1695, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"740\",\"date\":\"2022-11-30 12:00:00\",\"reference_no\":\"2247\",\"customer_id\":\"579\",\"customer\":\"Stephen Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8640.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8640.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"7200.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\":\"facd83340c7da3cb38838fb6fa1f5de7483ac8acfb771c27850e1798c27b51b7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1313\",\"sale_id\":\"740\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1314\",\"sale_id\":\"740\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1696, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"739\",\"date\":\"2022-11-30 12:00:00\",\"reference_no\":\"2246\",\"customer_id\":\"315\",\"customer\":\"Joseph Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25830.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"25830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"41\",\"pos\":\"0\",\"paid\":\"28830.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\":\"aad9c20c09f4e3a2903c7fce0d1ebb678c3bf1a4576e340587cf785e557e1eb5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1311\",\"sale_id\":\"739\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19215.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"30.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1312\",\"sale_id\":\"739\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1697, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"737\",\"date\":\"2022-11-30 11:55:00\",\"reference_no\":\"2245\",\"customer_id\":\"577\",\"customer\":\"John Manegene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"1100.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\":\"c668c905f07df11f99c6ecbde26040ba85c8b83d27baabee2da4c6f99cd1697f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1309\",\"sale_id\":\"737\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"400.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"400.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1698, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"738\",\"date\":\"2022-11-30 11:55:00\",\"reference_no\":\"2239\",\"customer_id\":\"578\",\"customer\":\"Daniel Wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13230.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13230.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"21\",\"pos\":\"0\",\"paid\":\"13200.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\":\"a550efe54a855dca2efae2b5c6ededfe8cca869c72459c3c0ca281d7f8ac9b25\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1310\",\"sale_id\":\"738\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13230.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"21.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1699, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"736\",\"date\":\"2022-11-30 11:45:00\",\"reference_no\":\"2244\",\"customer_id\":\"543\",\"customer\":\"Francis Kabitau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"362e70b9f9ff6db6fea1c9a2275477474cecb289e229b5e8dc857055970dc397\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1308\",\"sale_id\":\"736\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1700, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"735\",\"date\":\"2022-11-30 11:45:00\",\"reference_no\":\"2243\",\"customer_id\":\"576\",\"customer\":\"Antony Muthee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10800.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\":\"253f067bc1fac51f3eb515a68ae261ccfcc9406d680e3ca86cc7a885edb01caa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1307\",\"sale_id\":\"735\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1701, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"734\",\"date\":\"2022-11-30 11:40:00\",\"reference_no\":\"2242\",\"customer_id\":\"575\",\"customer\":\"Alphan Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3100.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\":\"b9d2c3106b1d82ada3cc4dc9348f7db54dbc81c6aa4b4501f189d331b69e1ecb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1306\",\"sale_id\":\"734\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1702, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"733\",\"date\":\"2022-11-30 11:35:00\",\"reference_no\":\"2241\",\"customer_id\":\"574\",\"customer\":\"Rose Nyambura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"10000.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\":\"1a88419956f03e3533a3c1ac6983d0680a0c91adf775d1ff1fb526201290c573\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1305\",\"sale_id\":\"733\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1703, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"732\",\"date\":\"2022-11-30 11:35:00\",\"reference_no\":\"2240\",\"customer_id\":\"573\",\"customer\":\"Joseph Njau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"10000.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\":\"7900804f787ffb87b204af2535c9048e61f265cf6c7e2bb984da056f2b10c4eb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1304\",\"sale_id\":\"732\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1704, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"731\",\"date\":\"2022-11-29 13:05:00\",\"reference_no\":\"2238\",\"customer_id\":\"504\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5000.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\":\"cbd7677d6c47ee91d8d610f620bdbf0cc5ce6a41d2c07f22901d53553d60f9b3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1301\",\"sale_id\":\"731\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1705, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"730\",\"date\":\"2022-11-29 13:00:00\",\"reference_no\":\"2237\",\"customer_id\":\"572\",\"customer\":\"Samuel Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"15000.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\":\"e150a1a63ce92d151da509918ba89fb455219118919b0bf1c2243f09590a186d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1300\",\"sale_id\":\"730\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1706, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"729\",\"date\":\"2022-11-29 12:55:00\",\"reference_no\":\"2236\",\"customer_id\":\"277\",\"customer\":\"Gaddafi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 10:27:34\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"6000.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\":\"aa24ff851857fb43ce3ca4ff36b60361cc8d36a290c1bc3e1c061926033fb29b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1501\",\"sale_id\":\"729\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1707, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"728\",\"date\":\"2022-11-29 12:55:00\",\"reference_no\":\"2235\",\"customer_id\":\"571\",\"customer\":\"Edwin Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"f521f221ea25c2b5bb41812a98c5cfcdcea70b1e10f8227b700e157bf71bd53b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1297\",\"sale_id\":\"728\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1298\",\"sale_id\":\"728\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1708, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"727\",\"date\":\"2022-11-29 12:45:00\",\"reference_no\":\"2234\",\"customer_id\":\"547\",\"customer\":\"Gibson Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"43\",\"pos\":\"0\",\"paid\":\"6450.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\":\"4ed1ea2edc0cf8cae8a902acdb56dcbf04ebec4311c6876dabea3a109972b64a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1296\",\"sale_id\":\"727\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"43.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"43.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1709, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"726\",\"date\":\"2022-11-29 12:35:00\",\"reference_no\":\"2233\",\"customer_id\":\"477\",\"customer\":\"George Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"400.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\":\"9de63efe39f294b290fd077a985e234e6357cd4055c4d8e1f4b2e520a1fd1547\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1295\",\"sale_id\":\"726\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1710, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"725\",\"date\":\"2022-11-29 12:35:00\",\"reference_no\":\"2232\",\"customer_id\":\"570\",\"customer\":\"Amos Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1530.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1530.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"151\",\"pos\":\"0\",\"paid\":\"1500.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\":\"64b1f5abc4abe61a44d8e13776686abaae879495d6c123af5559370a966a1b6c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1293\",\"sale_id\":\"725\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1294\",\"sale_id\":\"725\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1711, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"724\",\"date\":\"2022-11-29 12:30:00\",\"reference_no\":\"2231\",\"customer_id\":\"569\",\"customer\":\"Josiah kaburu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24570.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24570.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"39\",\"pos\":\"0\",\"paid\":\"24570.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\":\"b87e1d0a20a6d455495c8a136b1ffa1f85d20e23e4d4576d2cf18a82c8e66572\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1292\",\"sale_id\":\"724\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"39.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"39.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1712, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"720\",\"date\":\"2022-11-28 20:05:00\",\"reference_no\":\"2227\",\"customer_id\":\"557\",\"customer\":\"Daniel Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"27eca93ad8f5c34dc8a83db7262248dc7c3c89e420f4bc6020ea3e913a172b10\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1286\",\"sale_id\":\"720\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1713, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"723\",\"date\":\"2022-11-28 16:15:00\",\"reference_no\":\"2230\",\"customer_id\":\"568\",\"customer\":\"Duncan Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"ea84f29a8262be43bfc7d4c2989edbdf3320265f668e2357e8e101e79e747cd1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1290\",\"sale_id\":\"723\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1291\",\"sale_id\":\"723\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1714, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"722\",\"date\":\"2022-11-28 16:10:00\",\"reference_no\":\"2229\",\"customer_id\":\"122\",\"customer\":\"Benard Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21735.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21735.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"21700.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\":\"e6d10f3822743d277d0adc5ea9f695a7c0e48ea6f81ee7fb272de3bbf4fc2df3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1289\",\"sale_id\":\"722\",\"product_id\":\"997\",\"product_code\":\"17040387\",\"product_name\":\"zawadi f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"34.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21735.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1715, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"721\",\"date\":\"2022-11-28 16:10:00\",\"reference_no\":\"2228\",\"customer_id\":\"567\",\"customer\":\"Julius Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"275.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"275.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"275.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\":\"9d105ddebd2f813a3ddc93e5de43f619ab3e3d86aa30f7943b978efffec4f1f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1287\",\"sale_id\":\"721\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1288\",\"sale_id\":\"721\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1716, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"718\",\"date\":\"2022-11-28 15:55:00\",\"reference_no\":\"2225\",\"customer_id\":\"566\",\"customer\":\"Zablon Ndege\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"2000.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\":\"a5413fb064a42f1f52f3da3b067cb4315cb42b2a7444ac7f227bb27c8932d443\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1283\",\"sale_id\":\"718\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"55.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"55.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1717, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"717\",\"date\":\"2022-11-28 15:45:00\",\"reference_no\":\"2224\",\"customer_id\":\"565\",\"customer\":\"Kinyua Wamari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"23250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 08:49:22\",\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"23200.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\":\"92f28ebf7b139c6ab2cc976211e1ebd9d435e3ec8ed79178ef8c88fdb4f26660\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1486\",\"sale_id\":\"717\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"15.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1718, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"716\",\"date\":\"2022-11-28 15:40:00\",\"reference_no\":\"2223\",\"customer_id\":\"564\",\"customer\":\"Patrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3240.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\":\"eb7f5ab41692b9045a9ffe227c008cd6bc78f8b4812c1fd78303fb67e4646f41\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1281\",\"sale_id\":\"716\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1719, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"715\",\"date\":\"2022-11-28 15:30:00\",\"reference_no\":\"2222\",\"customer_id\":\"369\",\"customer\":\"Stephen Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5295.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5295.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5290.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\":\"d51566f1a53dd02194511550d6d8eaf8ceceb47f90fc8aee5e887ae0999e37cd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1279\",\"sale_id\":\"715\",\"product_id\":\"999\",\"product_code\":\"40320316\",\"product_name\":\"malkia skuma\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4095.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1280\",\"sale_id\":\"715\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1720, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"714\",\"date\":\"2022-11-28 15:25:00\",\"reference_no\":\"2221\",\"customer_id\":\"386\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"1700.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\":\"f19ba8990c905f8d7c35ed09134a6c14d7c96ee3358fd88e8c2c1f8fd4391f1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1278\",\"sale_id\":\"714\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"14.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1721, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"711\",\"date\":\"2022-11-26 13:10:00\",\"reference_no\":\"2213\",\"customer_id\":\"498\",\"customer\":\"Gladys  Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"350.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\":\"8b49f222b35180c4550efecd0229253bbee6025dac5e2a2d460fbe074d91fb22\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1272\",\"sale_id\":\"711\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1722, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"709\",\"date\":\"2022-11-26 13:05:00\",\"reference_no\":\"2215\",\"customer_id\":\"468\",\"customer\":\"Elias Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2200.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\":\"269b5394d92e7eadc80311578b6ef3fa6141370285d82d85ca71417575cf2784\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1270\",\"sale_id\":\"709\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1723, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"710\",\"date\":\"2022-11-26 13:05:00\",\"reference_no\":\"2214\",\"customer_id\":\"561\",\"customer\":\"mama millicent\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"73b85dee90f6afa502577959f762f26d2abb60cbe609885be0cc59eb552c9d44\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1271\",\"sale_id\":\"710\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1724, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"707\",\"date\":\"2022-11-26 12:55:00\",\"reference_no\":\"2218\",\"customer_id\":\"464\",\"customer\":\"Nzomo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20790.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20790.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"33\",\"pos\":\"0\",\"paid\":\"20000.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\":\"ce8fa8e3c194cf6a3ce70ae7dcc7d537e3f80a1d5d0c3c57a1815155553e7663\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1267\",\"sale_id\":\"707\",\"product_id\":\"1010\",\"product_code\":\"09734300\",\"product_name\":\"frenze\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"33.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20790.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"33.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1725, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"708\",\"date\":\"2022-11-26 12:55:00\",\"reference_no\":\"2217\",\"customer_id\":\"560\",\"customer\":\"David Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-14 12:39:45\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"11250.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\":\"dce5df8c5e1d6bc1062b5802273125bde39e65f168f9a4ecc5fbcff664aaad81\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1534\",\"sale_id\":\"708\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1535\",\"sale_id\":\"708\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1726, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"706\",\"date\":\"2022-11-26 12:50:00\",\"reference_no\":\"2219\",\"customer_id\":\"559\",\"customer\":\"Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16960.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16960.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"27\",\"pos\":\"0\",\"paid\":\"16690.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\":\"8e56ec12dff7d1abae981f2e56c8c9b33f21ba03afb3a7e26f43d9c4245263f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1266\",\"sale_id\":\"706\",\"product_id\":\"993\",\"product_code\":\"34248336\",\"product_name\":\"gallant\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"26.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16960.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"26.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1727, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"713\",\"date\":\"2022-11-25 13:15:00\",\"reference_no\":\"2211\",\"customer_id\":\"563\",\"customer\":\"Geoffrey wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"bcfded9c63a5209335a2dbb1b73907356192c808493b60407e175eaf146a9ed2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1277\",\"sale_id\":\"713\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1728, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"712\",\"date\":\"2022-11-25 13:10:00\",\"reference_no\":\"2212\",\"customer_id\":\"562\",\"customer\":\"Peter Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"748.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"748.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"131\",\"pos\":\"0\",\"paid\":\"750.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\":\"da6047c521983ff295f92dcfa83fdb837d6925232c879bf19777902ff9e514b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1273\",\"sale_id\":\"712\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"98.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1274\",\"sale_id\":\"712\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1275\",\"sale_id\":\"712\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1276\",\"sale_id\":\"712\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1729, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"705\",\"date\":\"2022-11-25 11:30:00\",\"reference_no\":\"2209\",\"customer_id\":\"557\",\"customer\":\"Daniel Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"83d72d39287da84b3c62b081be14000179ae30c50e32b493bcc5ccf351782dbf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1265\",\"sale_id\":\"705\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1730, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"704\",\"date\":\"2022-11-25 11:25:00\",\"reference_no\":\"2208\",\"customer_id\":\"556\",\"customer\":\"Fredrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"525.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"525.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"150\",\"pos\":\"0\",\"paid\":\"500.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\":\"2797b279692954fb21bfdd454237db391f461cedf3b9d710e73a1902f69634f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1264\",\"sale_id\":\"704\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"525.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1731, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"703\",\"date\":\"2022-11-25 11:10:00\",\"reference_no\":\"2207\",\"customer_id\":\"318\",\"customer\":\"Geoffrey Njagi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"10400.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\":\"3724d8e5e90107962d5b5b9d2d4c62cdd3cbfad1ac5d287884d45762296a6ab9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1262\",\"sale_id\":\"703\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1263\",\"sale_id\":\"703\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1732, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"702\",\"date\":\"2022-11-25 11:00:00\",\"reference_no\":\"2206\",\"customer_id\":\"555\",\"customer\":\"Ruth Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"76\",\"pos\":\"0\",\"paid\":\"300.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\":\"bccaf50ad0fc8b3699b4d06082c645765915f8f0722529e881725c1bd834be5a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1260\",\"sale_id\":\"702\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"75.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"75.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1261\",\"sale_id\":\"702\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1733, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"701\",\"date\":\"2022-11-24 12:40:00\",\"reference_no\":\"2205\",\"customer_id\":\"554\",\"customer\":\"Mary wawira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"6080.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\":\"30b838577de82c27b2892811983c16c29df32931c05ce5c23224f2fe8442d93c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1258\",\"sale_id\":\"701\",\"product_id\":\"1080\",\"product_code\":\"69042146\",\"product_name\":\"Padma\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1259\",\"sale_id\":\"701\",\"product_id\":\"1079\",\"product_code\":\"21989071\",\"product_name\":\"Kartik\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1734, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"700\",\"date\":\"2022-11-24 12:40:00\",\"reference_no\":\"2204\",\"customer_id\":\"390\",\"customer\":\"Patrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"e4ba350f8c8b2233efa21a4c813686117b6d5c76a9ea930977fd3e16cc456c48\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1257\",\"sale_id\":\"700\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1735, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"699\",\"date\":\"2022-11-24 12:35:00\",\"reference_no\":\"2202\",\"customer_id\":\"304\",\"customer\":\"Daniel Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"c404547820904f833846bf5a98fcbb505c246bcf24a1e0dfe7734c2b099fa4d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1254\",\"sale_id\":\"699\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1736, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"698\",\"date\":\"2022-11-24 12:30:00\",\"reference_no\":\"2201\",\"customer_id\":\"396\",\"customer\":\"Charles Wamugunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3400.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\":\"5d2d21928e3f1b8d39c1854c53cb08c6ccfc34a11187bb246484ad22331e91a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1253\",\"sale_id\":\"698\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1737, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"697\",\"date\":\"2022-11-24 12:30:00\",\"reference_no\":\"2200\",\"customer_id\":\"553\",\"customer\":\"Mercy Nguru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3300.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\":\"6dc54b9efdf3e9bffecf975f0d5dfc291c8823cfc940bddce5ed21402d4a8686\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1252\",\"sale_id\":\"697\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1738, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"696\",\"date\":\"2022-11-24 12:25:00\",\"reference_no\":\"2199\",\"customer_id\":\"373\",\"customer\":\"Fredrick Njigoya\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2200.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\":\"85698b141cfc34668cd0517fb17b612e567983f14771082296dad0665e6d1510\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1251\",\"sale_id\":\"696\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1739, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"695\",\"date\":\"2022-11-24 12:25:00\",\"reference_no\":\"2198\",\"customer_id\":\"346\",\"customer\":\"Hellen d.town\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"83910.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"83910.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-15 16:00:15\",\"total_items\":\"132\",\"pos\":\"0\",\"paid\":\"50000.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\":\"0ba25d14ba3db63e4194fc55266a3c41301fe0f6da9d22cf0ca82546b2b155ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1547\",\"sale_id\":\"695\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17010.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"27.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1548\",\"sale_id\":\"695\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1549\",\"sale_id\":\"695\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"75.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"75.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1740, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"859\",\"date\":\"2022-11-24 11:00:00\",\"reference_no\":\"2435\",\"customer_id\":\"627\",\"customer\":\"patrick muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7800.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\":\"3a874bebfb553836974e43e56b078b0fac297cf1b52a90abb683c58998ef03d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1513\",\"sale_id\":\"859\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1741, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"694\",\"date\":\"2022-11-23 12:25:00\",\"reference_no\":\"2197\",\"customer_id\":\"540\",\"customer\":\"Daniel Karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"95d1c66a3231a90a209f3f05a087b05b492021b6d123b8873bf2cab154bf5adf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1248\",\"sale_id\":\"694\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1742, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"693\",\"date\":\"2022-11-23 12:20:00\",\"reference_no\":\"2196\",\"customer_id\":\"552\",\"customer\":\"Amos Wamugunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"b7c5da87c6a345290022d1a21293a77a6f3e73d5eb467d49ab42f8e9b4765df1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1247\",\"sale_id\":\"693\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1743, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"690\",\"date\":\"2022-11-23 12:05:00\",\"reference_no\":\"2194\",\"customer_id\":\"517\",\"customer\":\"Antony Wanjau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"fb4b4225784fdd6abadd1dd879646949ef8d325c0415536cfa4c180bb81b3a58\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1244\",\"sale_id\":\"690\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1744, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"689\",\"date\":\"2022-11-23 12:05:00\",\"reference_no\":\"2193\",\"customer_id\":\"550\",\"customer\":\"Antony Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"9a2a8e98b4dcb3f62b54a4a90f4ac465373a5f93f88f7bce6b0386aa6c8fb7c9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1243\",\"sale_id\":\"689\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1745, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"687\",\"date\":\"2022-11-23 11:55:00\",\"reference_no\":\"2191\",\"customer_id\":\"549\",\"customer\":\"Eliud waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16425.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16425.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-29 10:46:50\",\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"16400.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\":\"828d6615318f3fd40efb98b5131b8ea4d97cace5679b51641516c16a35148d78\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1716\",\"sale_id\":\"687\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"17.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1717\",\"sale_id\":\"687\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1746, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"684\",\"date\":\"2022-11-23 11:00:00\",\"reference_no\":\"2188\",\"customer_id\":\"135\",\"customer\":\"Ngugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"89600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"89600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"140\",\"pos\":\"0\",\"paid\":\"89600.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\":\"69e11b0854333a3549f556c10f47f8c157c6ab233c3f47b37aef273fbaf7acc2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1236\",\"sale_id\":\"684\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"140.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"89600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"140.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1747, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"683\",\"date\":\"2022-11-23 10:55:00\",\"reference_no\":\"2187\",\"customer_id\":\"545\",\"customer\":\"Benson Njuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1907.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1907.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"895\",\"pos\":\"0\",\"paid\":\"1900.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\":\"cd36cb167b50431ea0d8add3b4b9fe5b0b2ab3719ea90bba20feeeab5eea9f3d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1233\",\"sale_id\":\"683\",\"product_id\":\"1068\",\"product_code\":\"45930987\",\"product_name\":\"kiboko pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"800.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"800.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1234\",\"sale_id\":\"683\",\"product_id\":\"1066\",\"product_code\":\"23995551\",\"product_name\":\"c.wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1235\",\"sale_id\":\"683\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"157.5000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"45.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1748, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"672\",\"date\":\"2022-11-22 12:05:00\",\"reference_no\":\"2175\",\"customer_id\":\"543\",\"customer\":\"Francis Kabitau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"658eee55782115a6c70da4988dcd120af6ed5c93ba154917ff48c6393d5f8aad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1220\",\"sale_id\":\"672\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1749, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"671\",\"date\":\"2022-11-22 12:05:00\",\"reference_no\":\"2174\",\"customer_id\":\"394\",\"customer\":\"Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5670.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5670.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5300.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\":\"bf69d44fbdad47830ae33ce10eb55f77c9dc65013e32270bf682b9cbf5b0077c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1219\",\"sale_id\":\"671\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5670.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1750, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"682\",\"date\":\"2022-11-22 10:55:00\",\"reference_no\":\"2185\",\"customer_id\":\"548\",\"customer\":\"Yusuf Charles\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"600.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\":\"97dda7cdcb4a49d8c748b1484ddf4629c126809a2ec710ea57ee41e2ae812738\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1231\",\"sale_id\":\"682\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1232\",\"sale_id\":\"682\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1751, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"681\",\"date\":\"2022-11-22 10:50:00\",\"reference_no\":\"2184\",\"customer_id\":\"537\",\"customer\":\"James Gatogo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"57405dfce3729eab8ecd9c6f5da36f26e3c22142ee3e938ec4ddacba7b5454c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1230\",\"sale_id\":\"681\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1752, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"680\",\"date\":\"2022-11-22 10:35:00\",\"reference_no\":\"2183\",\"customer_id\":\"547\",\"customer\":\"Gibson Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"1500.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\":\"7d704b00e743288da4834cf4673d5a6516576aa4cbc8ec8e30835b714a59e541\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1229\",\"sale_id\":\"680\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1753, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"679\",\"date\":\"2022-11-22 10:35:00\",\"reference_no\":\"2182\",\"customer_id\":\"546\",\"customer\":\"Isaih Nyamu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22680.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22680.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"36\",\"pos\":\"0\",\"paid\":\"20250.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\":\"9c5a361613ec0260b8df49f445cab4aa3be640ef734cc1a4c7a6528f6b288408\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1228\",\"sale_id\":\"679\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22680.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1754, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"678\",\"date\":\"2022-11-22 10:25:00\",\"reference_no\":\"2181\",\"customer_id\":\"545\",\"customer\":\"Benson Njuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"600\",\"pos\":\"0\",\"paid\":\"1200.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\":\"3735f316fb39b97fe7d1fd6f00c51cdff68f9b892a5386731f9443e92324c196\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1227\",\"sale_id\":\"678\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"600.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"600.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1755, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"677\",\"date\":\"2022-11-22 10:20:00\",\"reference_no\":\"2180\",\"customer_id\":\"386\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"3700.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\":\"3f41eb077518baa131f1f4f76ff6f1fbe5818083209fb70e4abeeafbda19c935\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1226\",\"sale_id\":\"677\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1756, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"676\",\"date\":\"2022-11-22 10:15:00\",\"reference_no\":\"2179\",\"customer_id\":\"442\",\"customer\":\"Patrick Mundia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"6250.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\":\"0549960cc5e46be773ef78629a59b572bdc8d5b2c357499dd28774647cb7e64f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1225\",\"sale_id\":\"676\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1757, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"675\",\"date\":\"2022-11-22 10:15:00\",\"reference_no\":\"2178\",\"customer_id\":\"544\",\"customer\":\"Biwot\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"15000.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\":\"8d31c85e64ba32907c90cfa28a3e91bef689589d409c9bbc583a499a70916423\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1224\",\"sale_id\":\"675\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1758, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"674\",\"date\":\"2022-11-22 10:05:00\",\"reference_no\":\"2177\",\"customer_id\":\"272\",\"customer\":\"Paul Wambugu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"32\",\"pos\":\"0\",\"paid\":\"13000.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\":\"48d164cf15b1ce70ab922ee2af373fa3f4792c430cefc1755cb6d7d226452faa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1222\",\"sale_id\":\"674\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1223\",\"sale_id\":\"674\",\"product_id\":\"1078\",\"product_code\":\"11218398\",\"product_name\":\"calipha\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"15.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"15.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1759, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"673\",\"date\":\"2022-11-22 10:05:00\",\"reference_no\":\"2176\",\"customer_id\":\"278\",\"customer\":\"Moses Kang\\\\\'ara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"19800.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\":\"06fd7b25f5e642df9cc7b7296388cb08fac112404fcfd98e8a045f71ce87e2c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1221\",\"sale_id\":\"673\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1760, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"670\",\"date\":\"2022-11-21 12:00:00\",\"reference_no\":\"2173\",\"customer_id\":\"349\",\"customer\":\"Jonathan Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2200.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\":\"f37883d640c249c070c524b7092ea70ea1ad1b0999f510776fa730b97114d69f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1217\",\"sale_id\":\"670\",\"product_id\":\"1076\",\"product_code\":\"65017700\",\"product_name\":\"Tunda f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1218\",\"sale_id\":\"670\",\"product_id\":\"1077\",\"product_code\":\"34051425\",\"product_name\":\"vilani f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1761, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"669\",\"date\":\"2022-11-21 11:25:00\",\"reference_no\":\"2172\",\"customer_id\":\"542\",\"customer\":\"Benson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5500.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\":\"3a7f2eead366a5e6699a8785a0bf070c9e55b64acc2aaa98d9220fb93234f42e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1215\",\"sale_id\":\"669\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1216\",\"sale_id\":\"669\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1762, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"668\",\"date\":\"2022-11-21 11:20:00\",\"reference_no\":\"2171\",\"customer_id\":\"541\",\"customer\":\"Timothy  Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"e8be2f08761556a35e6946e14f9e07aeeba5a7e184e4424be84b0a3958cfa5f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1214\",\"sale_id\":\"668\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1763, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"667\",\"date\":\"2022-11-21 11:20:00\",\"reference_no\":\"2170\",\"customer_id\":\"540\",\"customer\":\"Daniel Karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"cf4f466e0b99e5621dea2dad298bf1e85b009f67ae1e55acf6f20ac2b0efe3dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1213\",\"sale_id\":\"667\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1764, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"666\",\"date\":\"2022-11-21 11:20:00\",\"reference_no\":\"2169\",\"customer_id\":\"539\",\"customer\":\"Francis\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11120.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11120.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-09 10:53:02\",\"total_items\":\"162\",\"pos\":\"0\",\"paid\":\"11040.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\":\"03b1a7211d64560728af58f857637ede576e361548935b7e3931b1db76375cfc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1395\",\"sale_id\":\"666\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1396\",\"sale_id\":\"666\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"155.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"155.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1765, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"665\",\"date\":\"2022-11-21 11:15:00\",\"reference_no\":\"2168\",\"customer_id\":\"538\",\"customer\":\"Moses Karanja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"13000.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\":\"ef055eae8ebe6c0840d7d63535f865a4a23f35b043a112599a5e9caa4d5928e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1211\",\"sale_id\":\"665\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1766, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"664\",\"date\":\"2022-11-21 11:15:00\",\"reference_no\":\"2167\",\"customer_id\":\"537\",\"customer\":\"James Gatogo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1450.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\":\"c9b0b44916561b5b8277e051bcb6d9239301c2210c2ca02b8dd8e9fbf501b265\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1210\",\"sale_id\":\"664\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1767, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"663\",\"date\":\"2022-11-21 11:10:00\",\"reference_no\":\"2166\",\"customer_id\":\"536\",\"customer\":\"Allan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"5b2bcaf85c3b5de8a76b4341b57da933eb837e03476a81d5be470ffab15b7a33\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1209\",\"sale_id\":\"663\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1768, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"662\",\"date\":\"2022-11-21 11:05:00\",\"reference_no\":\"2164\",\"customer_id\":\"535\",\"customer\":\"Christopher Gachangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"f5281b7e70b4ef88b6dd83dbc61ae05225f27ca7cd8e857951adf481e5b1ccd5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1208\",\"sale_id\":\"662\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1769, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"661\",\"date\":\"2022-11-21 11:05:00\",\"reference_no\":\"2163\",\"customer_id\":\"534\",\"customer\":\"Edwin Karuri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4300.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\":\"e5fca3fbca1e01f08c4523edd36d3a4f9ea7cc01deda375fa5ca8788a6bf1790\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1207\",\"sale_id\":\"661\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1770, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"660\",\"date\":\"2022-11-19 11:05:00\",\"reference_no\":\"2162\",\"customer_id\":\"397\",\"customer\":\"Samson Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2500.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\":\"41a53e2c9da398d0badb04fb690b3cabf5b323e21827091d167e6444d6ddd7dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1206\",\"sale_id\":\"660\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1771, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"659\",\"date\":\"2022-11-19 11:00:00\",\"reference_no\":\"2161\",\"customer_id\":\"411\",\"customer\":\"Eliud Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"750.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\":\"221ebb201c14ec075e91a241b3953dcb5d0af63efa3db8a4b3d52be166df2fe2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1205\",\"sale_id\":\"659\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1772, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"658\",\"date\":\"2022-11-19 11:00:00\",\"reference_no\":\"2160\",\"customer_id\":\"533\",\"customer\":\"Grace Wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"2200.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\":\"e8595c85b6cc7caad75b0dfa35a508ffe778eac7adcceec2b89f6c6692ec2827\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1204\",\"sale_id\":\"658\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1773, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"657\",\"date\":\"2022-11-19 10:55:00\",\"reference_no\":\"2159\",\"customer_id\":\"523\",\"customer\":\"Rachael njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"600.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\":\"54d987294d2877d3119867510db674f69d52143d11286efbef98278025d40116\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1203\",\"sale_id\":\"657\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1774, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"654\",\"date\":\"2022-11-18 10:45:00\",\"reference_no\":\"2157\",\"customer_id\":\"532\",\"customer\":\"John Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"6ca873be57e178e8461bf44a3cc3f76cd8f1856d9c67afe9775f9df41010149d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1200\",\"sale_id\":\"654\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1775, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"653\",\"date\":\"2022-11-18 10:40:00\",\"reference_no\":\"2155\",\"customer_id\":\"522\",\"customer\":\"John Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"413a701010a01a15c31d50feca3b442505cbe517b9c92297f9505e6652b9d8cd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1199\",\"sale_id\":\"653\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1776, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"652\",\"date\":\"2022-11-18 10:40:00\",\"reference_no\":\"2154\",\"customer_id\":\"228\",\"customer\":\"Alex Njoroge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"3950.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\":\"b03c64409a9106b5ce023fc80d32a7896ac9517504f07f5ae44c57ee6011077c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1197\",\"sale_id\":\"652\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1198\",\"sale_id\":\"652\",\"product_id\":\"970\",\"product_code\":\"93591242\",\"product_name\":\"pawpaw vegaf1\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1777, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"651\",\"date\":\"2022-11-18 10:30:00\",\"reference_no\":\"2153\",\"customer_id\":\"531\",\"customer\":\"Kelvin Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"3923a9fd55904d34b5366f7ed12c697738e98b7be8ef2328dee87f12962d79ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1196\",\"sale_id\":\"651\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1778, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"650\",\"date\":\"2022-11-18 10:30:00\",\"reference_no\":\"2152\",\"customer_id\":\"530\",\"customer\":\"Peter Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"6734e075de8538bfc83b1a97f9d27ebe935ff42bd15da8c87b641220883febe2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1195\",\"sale_id\":\"650\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1779, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"647\",\"date\":\"2022-11-17 13:00:00\",\"reference_no\":\"2147\",\"customer_id\":\"528\",\"customer\":\"Wilson Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"340.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\":\"97cf6b74e80f417ad32c4fee8f7cf2dca9310facefc6d82170ee20b48bc7768b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1191\",\"sale_id\":\"647\",\"product_id\":\"970\",\"product_code\":\"93591242\",\"product_name\":\"pawpaw vegaf1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1780, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"646\",\"date\":\"2022-11-17 12:55:00\",\"reference_no\":\"2146\",\"customer_id\":\"268\",\"customer\":\"Milo  Musee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"620\",\"pos\":\"0\",\"paid\":\"38400.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\":\"eb5bf788cecbcac59df2d3b4f23d29f42d0959182685f43698527d9256d626a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1189\",\"sale_id\":\"646\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1190\",\"sale_id\":\"646\",\"product_id\":\"1005\",\"product_code\":\"31301551\",\"product_name\":\"solo sunrise\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"420.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"420.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1781, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"649\",\"date\":\"2022-11-17 08:35:00\",\"reference_no\":\"2149\",\"customer_id\":\"529\",\"customer\":\"Susan Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3060.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3060.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"3060.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\":\"e886d8d3f24ca29be20c758db414a2ea9c3de03a28604bce3045c4de8cfce75d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1193\",\"sale_id\":\"649\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1194\",\"sale_id\":\"649\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1782, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"648\",\"date\":\"2022-11-17 08:30:00\",\"reference_no\":\"2148\",\"customer_id\":\"525\",\"customer\":\"Antony Karuoya\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"250.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\":\"6a84817ef0575912a8abab398a27f05e9d77e3962cb068cfdea20fe11a502283\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1192\",\"sale_id\":\"648\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1783, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"643\",\"date\":\"2022-11-16 16:30:00\",\"reference_no\":\"2143\",\"customer_id\":\"493\",\"customer\":\"Naphtali Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"680af231479bd32bab9e04e9f1cd80953060b6193f199e3bfe32f29cc1a04000\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1183\",\"sale_id\":\"643\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1784, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"644\",\"date\":\"2022-11-16 16:30:00\",\"reference_no\":\"2140\",\"customer_id\":\"526\",\"customer\":\"Samson Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32830.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-20 09:52:48\",\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"35030.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\":\"839f2308b3a7326c296d5f21b3ca065e58603968497ff4c5b94016e2d8dc5b57\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1601\",\"sale_id\":\"644\",\"product_id\":\"962\",\"product_code\":\"24694035\",\"product_name\":\"melon sukari f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1602\",\"sale_id\":\"644\",\"product_id\":\"998\",\"product_code\":\"62393307\",\"product_name\":\"gloria\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1603\",\"sale_id\":\"644\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1280.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1604\",\"sale_id\":\"644\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1605\",\"sale_id\":\"644\",\"product_id\":\"4294967295\",\"product_code\":\"cabbage\",\"product_name\":\"gloria seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"1600.0000\",\"unit_price\":\"1600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1785, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"641\",\"date\":\"2022-11-16 16:30:00\",\"reference_no\":\"2138\",\"customer_id\":\"525\",\"customer\":\"Antony Karuoya\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"510.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"170\",\"pos\":\"0\",\"paid\":\"500.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\":\"5913a49c1fda948b85cf06fb7b1dccb96376396739577d50f894a1be78480fcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1179\",\"sale_id\":\"641\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"170.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"170.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1786, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"640\",\"date\":\"2022-11-16 16:25:00\",\"reference_no\":\"2136\",\"customer_id\":\"469\",\"customer\":\"Patrick Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21420.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21420.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-08 15:36:02\",\"total_items\":\"34\",\"pos\":\"0\",\"paid\":\"22400.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\":\"2871fec4d814cd6f9fdb977d231c3a542ae48ce9ab0dab8586fb72d17ef35aaa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1374\",\"sale_id\":\"640\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13860.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1375\",\"sale_id\":\"640\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1787, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"639\",\"date\":\"2022-11-16 16:20:00\",\"reference_no\":\"2135\",\"customer_id\":\"524\",\"customer\":\"Harrison Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3460.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\":\"b822a9141020c7e59bf85fee004dfa317889df3bcfc29d2e4e9c1a5e15bb4025\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1176\",\"sale_id\":\"639\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1788, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"638\",\"date\":\"2022-11-16 16:20:00\",\"reference_no\":\"2134\",\"customer_id\":\"523\",\"customer\":\"Rachael njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"a488b3f48f41017b86788413b1c71c641a7caec8ad1e2da474589ed9e52b1c83\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1175\",\"sale_id\":\"638\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1789, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"637\",\"date\":\"2022-11-16 16:15:00\",\"reference_no\":\"2133\",\"customer_id\":\"522\",\"customer\":\"John Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"7000.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\":\"4c2d4c7c6ed89ed815661a80b52eaf493d3ac6ad4c983f98d818855bdc828cc5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1174\",\"sale_id\":\"637\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1790, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"636\",\"date\":\"2022-11-16 16:15:00\",\"reference_no\":\"2132\",\"customer_id\":\"521\",\"customer\":\"Jason kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"2e3137a902d8529bae2abf51a5b869ee7186b4c9457bb036a58b97af43697bbc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1173\",\"sale_id\":\"636\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1791, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"634\",\"date\":\"2022-11-16 16:00:00\",\"reference_no\":\"2130\",\"customer_id\":\"520\",\"customer\":\"Antony Mueni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"40500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"40000.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\":\"a67a3a748268887f6b4779ba81f6975b9cac1a9e0dc2acf9f61d1bbecd829160\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1171\",\"sale_id\":\"634\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1792, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"628\",\"date\":\"2022-11-16 15:45:00\",\"reference_no\":\"2129\",\"customer_id\":\"519\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-25 12:39:08\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"0823c511011d088cd41850c40b380b6d4ce7bcd983e863bea7c6d787b4413285\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1255\",\"sale_id\":\"628\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1256\",\"sale_id\":\"628\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"675.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1793, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"627\",\"date\":\"2022-11-16 15:40:00\",\"reference_no\":\"2128\",\"customer_id\":\"182\",\"customer\":\"Peter maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"230\",\"pos\":\"0\",\"paid\":\"710.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\":\"31bb2a66155b76285819097d9055bf2112b76612dccdc521cf97ac8a3254113f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1163\",\"sale_id\":\"627\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"190.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"570.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"190.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1164\",\"sale_id\":\"627\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"140.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1794, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"626\",\"date\":\"2022-11-16 15:35:00\",\"reference_no\":\"2127\",\"customer_id\":\"518\",\"customer\":\"Joseph Mutero\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d9c2434ed5c7b45c53b343611b1f5b62fc553f61c0a3e6447118a023ad86d6a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1162\",\"sale_id\":\"626\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1795, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"642\",\"date\":\"2022-11-16 14:45:00\",\"reference_no\":\"2141\",\"customer_id\":\"527\",\"customer\":\"Samuel Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22680.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22680.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"36\",\"pos\":\"0\",\"paid\":\"22600.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\":\"f309435b42f3a9a0e8b87b936e0021cb8b525b96d9e9944de6260514b319ea9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1182\",\"sale_id\":\"642\",\"product_id\":\"1075\",\"product_code\":\"90725824\",\"product_name\":\"chairman\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22680.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"36.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1796, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"625\",\"date\":\"2022-11-15 15:35:00\",\"reference_no\":\"2122\",\"customer_id\":\"516\",\"customer\":\"John weru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"66f473b78ab6d11c53c179be2a3b6386c8130e686867983d4d0e5268c6582c87\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1161\",\"sale_id\":\"625\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1797, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"624\",\"date\":\"2022-11-15 12:25:00\",\"reference_no\":\"2126\",\"customer_id\":\"337\",\"customer\":\"Nahashon waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"210.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"210.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"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\":\"e4fafee1bd7a1be5eefe63d432e69fbb094de721adf47fb3bdc0ccd6d8e6465b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1160\",\"sale_id\":\"624\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"210.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1798, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"623\",\"date\":\"2022-11-15 12:20:00\",\"reference_no\":\"2125\",\"customer_id\":\"419\",\"customer\":\"Rashid Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"617d5f432b0bee3119aefe5c22fb622dead7888c232f47451622b99624a1548d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1159\",\"sale_id\":\"623\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1799, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"621\",\"date\":\"2022-11-15 12:05:00\",\"reference_no\":\"2123\",\"customer_id\":\"517\",\"customer\":\"Antony Wanjau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"4ac56c828b66d0be62794a6edaeef99e61ce534b2b2c36392db98d06d1cf902e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1156\",\"sale_id\":\"621\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1800, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"619\",\"date\":\"2022-11-15 12:00:00\",\"reference_no\":\"2121\",\"customer_id\":\"515\",\"customer\":\"Festus Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"17b8b381ab9cbfe69e19353c6ea0b5cca23aab2097ceec90cc54a73c13bdb2c0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1154\",\"sale_id\":\"619\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1801, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"618\",\"date\":\"2022-11-15 11:45:00\",\"reference_no\":\"2120\",\"customer_id\":\"402\",\"customer\":\"Joel Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2370.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2370.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2370.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\":\"f3c446e3febb62a35274773ba81210e924b282f797ce41ff46a6bfee3c7f385d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1151\",\"sale_id\":\"618\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1152\",\"sale_id\":\"618\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1802, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"616\",\"date\":\"2022-11-15 11:35:00\",\"reference_no\":\"2118\",\"customer_id\":\"514\",\"customer\":\"Hellen Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-16 11:56:37\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"750.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\":\"123a66bd28c0598c8b84e1f8a135e0b21e7ace3742a0d55c2c7262fdcebd5aec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1153\",\"sale_id\":\"616\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1803, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"622\",\"date\":\"2022-11-14 12:15:00\",\"reference_no\":\"2117\",\"customer_id\":\"343\",\"customer\":\"David Mathu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"9500.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\":\"27ba2c9ad2d2ad17d32fddc5c58d858902025b798388d142b8c17d420f2a0b6e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1157\",\"sale_id\":\"622\",\"product_id\":\"1013\",\"product_code\":\"08687867\",\"product_name\":\"nouvelle f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1158\",\"sale_id\":\"622\",\"product_id\":\"1074\",\"product_code\":\"59488939\",\"product_name\":\"Bareto f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4095.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1804, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"617\",\"date\":\"2022-11-14 11:40:00\",\"reference_no\":\"2119\",\"customer_id\":\"184\",\"customer\":\"Benard irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"9fda03c5d0e13f8dfa5d601119a8a16eb91f42c055f1414d540e85258159e1fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1150\",\"sale_id\":\"617\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1805, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"615\",\"date\":\"2022-11-14 11:30:00\",\"reference_no\":\"2113\",\"customer_id\":\"506\",\"customer\":\"Simon Githuka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3700.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\":\"7cf966c919fefa7f5e9a400725ffb668ec7eb7b788f51a8bb131c0e5a1852e42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1148\",\"sale_id\":\"615\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1806, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"614\",\"date\":\"2022-11-14 11:05:00\",\"reference_no\":\"2116\",\"customer_id\":\"141\",\"customer\":\"Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"35280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"56\",\"pos\":\"0\",\"paid\":\"38000.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\":\"2de897397cb69ddd71f3329a2f8b18d9a44f0585aa14e4a55df0f1ffbc10cbac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1145\",\"sale_id\":\"614\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"42.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26775.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"42.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1146\",\"sale_id\":\"614\",\"product_id\":\"1065\",\"product_code\":\"85748817\",\"product_name\":\"Bigrock\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1147\",\"sale_id\":\"614\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1807, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"613\",\"date\":\"2022-11-14 11:00:00\",\"reference_no\":\"2114\",\"customer_id\":\"407\",\"customer\":\"Isaac Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2400.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\":\"b7173d1b9ae09f8f82eef589b260dbd87abfe277eeba3ce7fac0fecd1488edf1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1137\",\"sale_id\":\"613\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1138\",\"sale_id\":\"613\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1808, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"612\",\"date\":\"2022-11-14 10:55:00\",\"reference_no\":\"2112\",\"customer_id\":\"204\",\"customer\":\"Benjamin haraka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"300\",\"pos\":\"0\",\"paid\":\"1200.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\":\"05cf570b8b23f274df0e554061b75feef243eeb4b35d670799dc7ed0c2d3d486\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1136\",\"sale_id\":\"612\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1809, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"611\",\"date\":\"2022-11-14 10:50:00\",\"reference_no\":\"2110\",\"customer_id\":\"513\",\"customer\":\"Simon Nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"145\",\"pos\":\"0\",\"paid\":\"3600.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\":\"5a64ed8b7f7fd104115cfc7e507bdefa1a318bf5eee17906e9c54c817d6af3e1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1135\",\"sale_id\":\"611\",\"product_id\":\"970\",\"product_code\":\"93591242\",\"product_name\":\"pawpaw vegaf1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"145.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"145.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1810, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"610\",\"date\":\"2022-11-14 10:15:00\",\"reference_no\":\"2109\",\"customer_id\":\"512\",\"customer\":\"Isaih murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"42285b9a53ebff83ba8d69bc523b818ccbbc5c6a4cdf98190f39058b8b6ab5f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1134\",\"sale_id\":\"610\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1811, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"609\",\"date\":\"2022-11-14 10:10:00\",\"reference_no\":\"2108\",\"customer_id\":\"511\",\"customer\":\"Peter kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"77ca9b2c6f2c00e554e5a6bc5293497e47c45b5e19f48bfcbf1397c42b7eb82a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1133\",\"sale_id\":\"609\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1812, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"608\",\"date\":\"2022-11-14 10:05:00\",\"reference_no\":\"2106\",\"customer_id\":\"168\",\"customer\":\"peterson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"105.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"105.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"105.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\":\"d3a81034e23c97efbec7b8c5848c087b54e390c96fb76f9bd3a55327848ff9f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1132\",\"sale_id\":\"608\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"105.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1813, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"607\",\"date\":\"2022-11-14 10:00:00\",\"reference_no\":\"2105\",\"customer_id\":\"321\",\"customer\":\"Jamleck Muthee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"6300.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\":\"aa13e86514ad993461cd3f8e3fe9c63b0f568a586cd40c1bfde4721363544f45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1131\",\"sale_id\":\"607\",\"product_id\":\"1011\",\"product_code\":\"86696082\",\"product_name\":\"riograde\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1814, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"606\",\"date\":\"2022-11-12 10:00:00\",\"reference_no\":\"2103\",\"customer_id\":\"510\",\"customer\":\"kariuki Munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"ab2b726fccd0ddb1747d8f94354d942600ef10cb281f6974bc792662532ad986\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1130\",\"sale_id\":\"606\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1815, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"605\",\"date\":\"2022-11-12 09:55:00\",\"reference_no\":\"2102\",\"customer_id\":\"215\",\"customer\":\"Patrick murithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3150.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\":\"c11204ba51fac475f05398a23811503f4ee94a53bfc72edcb215855bbf67e9d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1129\",\"sale_id\":\"605\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1816, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"604\",\"date\":\"2022-11-12 09:15:00\",\"reference_no\":\"2101\",\"customer_id\":\"508\",\"customer\":\"muthoni munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2550.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-16 09:22:24\",\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"2500.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\":\"e54f692680039a2c0c8a35295891d37b933576fedc4aaaeaedadca2d6cb4ddec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1128\",\"sale_id\":\"604\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1817, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"600\",\"date\":\"2022-11-12 09:02:00\",\"reference_no\":\"2097\",\"customer_id\":\"168\",\"customer\":\"peterson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2142.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2142.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2200.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\":\"eed435383e10170925839d4b256d0da1e8502a3edd1728bc155a7c5678c2761e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1123\",\"sale_id\":\"600\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.4000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2142.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.4000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1818, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"603\",\"date\":\"2022-11-12 09:00:00\",\"reference_no\":\"2100\",\"customer_id\":\"184\",\"customer\":\"Benard irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2150.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\":\"f79ba04fcc9110419d09cffbae79f22161e8adfcefced8d80c350fc3ee66d331\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1126\",\"sale_id\":\"603\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1819, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"599\",\"date\":\"2022-11-12 08:59:00\",\"reference_no\":\"2096\",\"customer_id\":\"270\",\"customer\":\"geofrey\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14805.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14805.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"24\",\"pos\":\"0\",\"paid\":\"11000.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\":\"1dfebeda63f1b78c41655f9d97b21f9fde214747d22585059825df3ec8ac5b4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1122\",\"sale_id\":\"599\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14805.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1820, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"602\",\"date\":\"2022-11-12 08:55:00\",\"reference_no\":\"2098\",\"customer_id\":\"447\",\"customer\":\"Simon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"f6e920bf1187a965d004044c958bde920eeed694a0912f6825c2e97bbdfdc463\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1125\",\"sale_id\":\"602\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1821, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"598\",\"date\":\"2022-11-12 08:55:00\",\"reference_no\":\"2095\",\"customer_id\":\"507\",\"customer\":\"Dennis Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5850.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5850.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5800.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\":\"1a913b7764763ac27fc778f202fb01992a589f476e7da63ca087ce1cb70f92f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1120\",\"sale_id\":\"598\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1121\",\"sale_id\":\"598\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1822, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"595\",\"date\":\"2022-11-11 15:41:00\",\"reference_no\":\"2094\",\"customer_id\":\"505\",\"customer\":\"Francis Wamugunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3660.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3660.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-08 10:58:20\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3660.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\":\"6e1fc218e58a13f8c20a79fcfe6126fe0ec640d3bc787519fdf0234616d74475\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1366\",\"sale_id\":\"595\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1367\",\"sale_id\":\"595\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1368\",\"sale_id\":\"595\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"Zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1823, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"589\",\"date\":\"2022-11-11 10:52:00\",\"reference_no\":\"2081\",\"customer_id\":\"281\",\"customer\":\"James Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"1842df52426ed4331206e580027f5b41b7ea9cf09f212d7c20a106251c30be52\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1105\",\"sale_id\":\"589\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1824, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"586\",\"date\":\"2022-11-10 10:45:00\",\"reference_no\":\"2085\",\"customer_id\":\"377\",\"customer\":\"Micah Nguu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4500.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\":\"0fb8768b99ad5a472f403a99563dbee5041a4ac6b19a16fcd29f63d2f1ae8420\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1094\",\"sale_id\":\"586\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1095\",\"sale_id\":\"586\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1825, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"587\",\"date\":\"2022-11-10 10:45:00\",\"reference_no\":\"2084\",\"customer_id\":\"485\",\"customer\":\"Dishon Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-11 10:51:19\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"cf29fdccf43b5792ad9152a68886b69064ac589124e79d39e11750de74f74470\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1101\",\"sale_id\":\"587\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1826, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"588\",\"date\":\"2022-11-10 10:45:00\",\"reference_no\":\"2082\",\"customer_id\":\"404\",\"customer\":\"Timothy\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1880.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1880.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-11 10:51:09\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1880.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\":\"244c91ddaaabbeda7e895f8bce3812180339d09af500928768795564052f93c6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1099\",\"sale_id\":\"588\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1100\",\"sale_id\":\"588\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1827, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"583\",\"date\":\"2022-11-10 10:40:00\",\"reference_no\":\"2088\",\"customer_id\":\"490\",\"customer\":\"Benjamin Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4300.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\":\"d18c6fb0eb4573e557fbfdb2689f953a8a368b5bb5363e214a8a826b3a7dea0b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1089\",\"sale_id\":\"583\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1090\",\"sale_id\":\"583\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1828, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"584\",\"date\":\"2022-11-10 10:40:00\",\"reference_no\":\"2087\",\"customer_id\":\"491\",\"customer\":\"Samuel Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-11 10:51:53\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1620.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\":\"aaa99e6d9d23dde062ce75e14f16803d80c841947323e4f1b96ab85318d31521\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1104\",\"sale_id\":\"584\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1829, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"585\",\"date\":\"2022-11-10 10:40:00\",\"reference_no\":\"2086\",\"customer_id\":\"492\",\"customer\":\"Antony Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7375.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7375.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-16 11:07:29\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7150.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\":\"d851eef368a2c76b222efc3e57d5b79e2595ebef80cd75b4183cabf4147bb3f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1142\",\"sale_id\":\"585\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1143\",\"sale_id\":\"585\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1144\",\"sale_id\":\"585\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal seedling 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"675.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1830, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"581\",\"date\":\"2022-11-10 10:35:00\",\"reference_no\":\"2091\",\"customer_id\":\"489\",\"customer\":\"Joseph Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3460.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\":\"5938e132ed52651848d5173feafddd551554d4047f5b81f20d7aa5dd09d20fcd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1087\",\"sale_id\":\"581\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1831, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"582\",\"date\":\"2022-11-10 10:35:00\",\"reference_no\":\"2089\",\"customer_id\":\"196\",\"customer\":\"wilson boma\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"522eede060cbacf470cb696ac76c1bb7eaee4084452eaef0286ac435b24f9066\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1088\",\"sale_id\":\"582\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1832, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"597\",\"date\":\"2022-11-10 08:40:00\",\"reference_no\":\"2090\",\"customer_id\":\"506\",\"customer\":\"Simon Githuka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-12 08:47:11\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6480.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\":\"7a27202e7a0c84ed483138d39851d0914e59f58de04c7c78d31e5ca7d19ec846\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1118\",\"sale_id\":\"597\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1119\",\"sale_id\":\"597\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1833, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"594\",\"date\":\"2022-11-09 11:30:00\",\"reference_no\":\"2072\",\"customer_id\":\"495\",\"customer\":\"Irene Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2200.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\":\"f4ed279a023066fa980002025700dfbf2197db0ef75d60160dc22e7d3e58894e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1110\",\"sale_id\":\"594\",\"product_id\":\"1001\",\"product_code\":\"85058872\",\"product_name\":\"Ahadi seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1111\",\"sale_id\":\"594\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"Spinach f1 Seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1834, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"593\",\"date\":\"2022-11-09 11:25:00\",\"reference_no\":\"2071\",\"customer_id\":\"494\",\"customer\":\"Grace Kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"600.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\":\"dc936e10516dd48cc964cefbc3d3a77a1dd68f37395ebc137a252ae888d13588\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1109\",\"sale_id\":\"593\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1835, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"592\",\"date\":\"2022-11-09 11:20:00\",\"reference_no\":\"2069\",\"customer_id\":\"262\",\"customer\":\"Nicholas kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"1900.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\":\"912f97813354dacc749c5442660eca35449c669eaa645e9de224eb18b3a355ce\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1108\",\"sale_id\":\"592\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10710.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1836, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"591\",\"date\":\"2022-11-09 11:15:00\",\"reference_no\":\"2078\",\"customer_id\":\"493\",\"customer\":\"Naphtali Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"23a8b996a79f358de2c4920afa5fd7af39b2f32f7f0bfbb8a1f7c212feaf3526\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1107\",\"sale_id\":\"591\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1837, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"590\",\"date\":\"2022-11-09 10:50:00\",\"reference_no\":\"2079\",\"customer_id\":\"265\",\"customer\":\"Mary Kimunyi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"280.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\":\"0fcdbcd6ce3d9c122e613055949648ed325164e37d803e145c8b940a466c8f19\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1106\",\"sale_id\":\"590\",\"product_id\":\"1073\",\"product_code\":\"35788577\",\"product_name\":\"Revelation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1838, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"579\",\"date\":\"2022-11-09 10:44:00\",\"reference_no\":\"2068\",\"customer_id\":\"487\",\"customer\":\"Joseph Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"4cbff62df5bec920a679d300aa1271b63f1e988b22c3bf0b428a2bc039cbe3f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1080\",\"sale_id\":\"579\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1839, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"578\",\"date\":\"2022-11-09 10:39:00\",\"reference_no\":\"2073\",\"customer_id\":\"486\",\"customer\":\"Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3200.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\":\"0ffafbdd7bfaa7a5b7df5bd02183b7d172a267bf0776437c8dc8b5349fc2fffa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1079\",\"sale_id\":\"578\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1840, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"577\",\"date\":\"2022-11-09 10:29:00\",\"reference_no\":\"2076\",\"customer_id\":\"485\",\"customer\":\"Dishon Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3150.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\":\"f3f7011efb1bff299f73784ca9d43bb92f51ea0f8c2f0b206d6dbcf8fbe007de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1078\",\"sale_id\":\"577\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1841, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"576\",\"date\":\"2022-11-09 10:26:00\",\"reference_no\":\"2077\",\"customer_id\":\"484\",\"customer\":\"Zawerio Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1430.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1430.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1430.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\":\"ac8bcc163fd81eb7bda2a1387b7023fcf7b2b6609816d8421abc0f4a80289cf2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1076\",\"sale_id\":\"576\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1077\",\"sale_id\":\"576\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1842, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"596\",\"date\":\"2022-11-09 08:35:00\",\"reference_no\":\"2070\",\"customer_id\":\"497\",\"customer\":\"George Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7660.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7660.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-01 11:33:07\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"7660.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\":\"33a6e52837d7d639e43a744760fff8d857674f311214aba843951060a7564ecc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1302\",\"sale_id\":\"596\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1303\",\"sale_id\":\"596\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"Kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1843, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"572\",\"date\":\"2022-11-08 12:57:00\",\"reference_no\":\"2058\",\"customer_id\":\"451\",\"customer\":\"Isaac Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2500.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\":\"876a98bd3f36635329b9819fc87fa924e579cfd01aa9d409dac9f6e4ffb2532a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1063\",\"sale_id\":\"572\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1844, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"571\",\"date\":\"2022-11-08 12:38:00\",\"reference_no\":\"2059\",\"customer_id\":\"298\",\"customer\":\"David gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"210.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"210.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"90\",\"pos\":\"0\",\"paid\":\"210.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\":\"670f8f1ffcce62777ecee125cadc31a119a76c04d3529ecbc4eacc8017f98464\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1060\",\"sale_id\":\"571\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1061\",\"sale_id\":\"571\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1062\",\"sale_id\":\"571\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1845, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"570\",\"date\":\"2022-11-08 12:34:00\",\"reference_no\":\"2060\",\"customer_id\":\"482\",\"customer\":\"Peter maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"250\",\"pos\":\"0\",\"paid\":\"500.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\":\"2193c70a1b9200dce20e6cafa275a785c322c922b28fdbb8b3d2a26e6c6f5cf3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1058\",\"sale_id\":\"570\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1059\",\"sale_id\":\"570\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1846, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"569\",\"date\":\"2022-11-08 12:32:00\",\"reference_no\":\"2061\",\"customer_id\":\"452\",\"customer\":\"Gerald Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1250.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\":\"fef15f781c763baa044126bebcdb336df7668b3421ec02ae03c8e233efcf363f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1057\",\"sale_id\":\"569\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1847, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"568\",\"date\":\"2022-11-08 12:30:00\",\"reference_no\":\"2062\",\"customer_id\":\"481\",\"customer\":\"Arthur Miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"2ec1b07c0b0a07bc8dc7676644f5defa69d31cf98ead02606fc2d119449a6d1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1056\",\"sale_id\":\"568\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1848, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"567\",\"date\":\"2022-11-08 12:27:00\",\"reference_no\":\"2067\",\"customer_id\":\"480\",\"customer\":\"Gladys Thuku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"8149be27fd13731a1a35e103954ee62e203413feb3947e8f4ee674790e43f729\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1055\",\"sale_id\":\"567\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1849, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"566\",\"date\":\"2022-11-08 12:25:00\",\"reference_no\":\"2066\",\"customer_id\":\"479\",\"customer\":\"Jackline\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"450.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\":\"adf827689f32343132250c091f961431e48abada15757f73f3cb9f5e138643e1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1054\",\"sale_id\":\"566\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1850, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"565\",\"date\":\"2022-11-08 12:24:00\",\"reference_no\":\"2065\",\"customer_id\":\"245\",\"customer\":\"Alfred chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"600.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\":\"b22d70aa7560b106bc649e6461134c7098f1fa9e5006fb0c76f2a129aa13ed54\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1053\",\"sale_id\":\"565\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1851, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"564\",\"date\":\"2022-11-07 13:14:00\",\"reference_no\":\"2052\",\"customer_id\":\"219\",\"customer\":\"Justus Kimandu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"252.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"252.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"63\",\"pos\":\"0\",\"paid\":\"250.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\":\"d541ec079d2ecb948618f8192acf6b6e1ba179a8c83d7f7f69cfbffaf24cb50e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1052\",\"sale_id\":\"564\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"63.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"252.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"63.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1852, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"563\",\"date\":\"2022-11-07 13:12:00\",\"reference_no\":\"2050\",\"customer_id\":\"308\",\"customer\":\"Charles Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"2000.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\":\"4b696ad0737fc86c74a29fe327eb3e2c6578a802b67c81bb113cdd1479ca5b86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1050\",\"sale_id\":\"563\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"50.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1051\",\"sale_id\":\"563\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1853, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"575\",\"date\":\"2022-11-07 13:10:00\",\"reference_no\":\"2053\",\"customer_id\":\"483\",\"customer\":\"Reginah mumbi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-08 13:23:52\",\"total_items\":\"151\",\"pos\":\"0\",\"paid\":\"300.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\":\"915c6df0773fc995e963daa513d451c400bf5275a4252dd1600e323332f81faf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1072\",\"sale_id\":\"575\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1073\",\"sale_id\":\"575\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1074\",\"sale_id\":\"575\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1075\",\"sale_id\":\"575\",\"product_id\":\"1066\",\"product_code\":\"23995551\",\"product_name\":\"c.wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1854, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"562\",\"date\":\"2022-11-07 13:10:00\",\"reference_no\":\"2049\",\"customer_id\":\"478\",\"customer\":\"Timothy  Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"1b711610ad368a43fb2bd9d44fad4d79790c704a84c45a1530ad72e9d2c024f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1049\",\"sale_id\":\"562\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1855, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"574\",\"date\":\"2022-11-07 13:05:00\",\"reference_no\":\"2055\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-08 13:09:01\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6930.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\":\"07f95119b9bcb36c27847884c7d565aa12cb631a3ed77f968ed38c9439073cb0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1067\",\"sale_id\":\"574\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1856, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"561\",\"date\":\"2022-11-07 13:05:00\",\"reference_no\":\"2047\",\"customer_id\":\"477\",\"customer\":\"George Wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"605\",\"pos\":\"0\",\"paid\":\"2300.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\":\"600e0d027a256c942d58b2e208a91c53175a81a51e899a8f0ec2baa51e00a055\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1044\",\"sale_id\":\"561\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1045\",\"sale_id\":\"561\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1046\",\"sale_id\":\"561\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1047\",\"sale_id\":\"561\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1048\",\"sale_id\":\"561\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1857, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"560\",\"date\":\"2022-11-07 13:03:00\",\"reference_no\":\"2046\",\"customer_id\":\"124\",\"customer\":\"Dan Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"440.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"440.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"440.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\":\"16ab0e7b49790c84644ef8e67d83066676b5f69492c0dfdb8fa3df4bc7220238\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1043\",\"sale_id\":\"560\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"440.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1858, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"559\",\"date\":\"2022-11-07 13:01:00\",\"reference_no\":\"2045\",\"customer_id\":\"453\",\"customer\":\"Geoffery Wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"83379d7806e07c68db1ad819adcf76bcefe76b8fe9c9c8d1700c536fc835acf8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1042\",\"sale_id\":\"559\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1859, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"573\",\"date\":\"2022-11-07 13:00:00\",\"reference_no\":\"2057\",\"customer_id\":\"447\",\"customer\":\"Simon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-08 13:03:00\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"1fde0b7b8ffee495e1e8270c53ff5db4d4df40846164ccb0c362b3c41a0a9bc6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1065\",\"sale_id\":\"573\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1860, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"556\",\"date\":\"2022-11-05 13:55:00\",\"reference_no\":\"2041\",\"customer_id\":\"475\",\"customer\":\"Alice Wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"235.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"235.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"105\",\"pos\":\"0\",\"paid\":\"230.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\":\"33939f641085a6ac2eb4529c0548496fda82d58cb0617ce3d5404a6e3183614e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1037\",\"sale_id\":\"556\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1038\",\"sale_id\":\"556\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"105.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1039\",\"sale_id\":\"556\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1861, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"558\",\"date\":\"2022-11-05 13:00:00\",\"reference_no\":\"2043\",\"customer_id\":\"476\",\"customer\":\"Rodgers Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3240.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\":\"38826ff4dab3f57fed7196e033f067d9c2d9955086fdaf788cd5ea32c4a4400e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1041\",\"sale_id\":\"558\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1862, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"557\",\"date\":\"2022-11-05 12:55:00\",\"reference_no\":\"2042\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3000.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\":\"c64e1d766c05fdc1759b91ec975600eb8126ba07b7f07c5fe15b51303423cb91\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1040\",\"sale_id\":\"557\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1863, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"555\",\"date\":\"2022-11-05 12:35:00\",\"reference_no\":\"2039\",\"customer_id\":\"408\",\"customer\":\"Francis Wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"300\",\"pos\":\"0\",\"paid\":\"900.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\":\"ff567eccda05c8e4a53c1f0ca623bbb9c047af4ae282f35db9113950cc3938e4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1036\",\"sale_id\":\"555\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"300.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"300.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1864, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"554\",\"date\":\"2022-11-05 12:30:00\",\"reference_no\":\"2038\",\"customer_id\":\"474\",\"customer\":\"Daniel  Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"42ab659149ab5687f65eb9d91601a8bca2f2e14b8502814ec3cd3ad44cd58b61\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1035\",\"sale_id\":\"554\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1865, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"553\",\"date\":\"2022-11-05 12:25:00\",\"reference_no\":\"2037\",\"customer_id\":\"473\",\"customer\":\"Hillary Munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"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\":\"ee48a7f73cf33301552dad451f4647f285bcdf1818f62e9f065c64d2e9617134\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1034\",\"sale_id\":\"553\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1866, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"552\",\"date\":\"2022-11-05 12:25:00\",\"reference_no\":\"2036\",\"customer_id\":\"327\",\"customer\":\"James Njagi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"aa103aae91d72a6f695c73302337af5a2dbbcd64111fcd8d019ec1c242e8eb3e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1033\",\"sale_id\":\"552\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1867, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"551\",\"date\":\"2022-11-05 11:55:00\",\"reference_no\":\"2035\",\"customer_id\":\"462\",\"customer\":\"Peter Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"e83022b5256e7eb74500ec53ee27cba7ea86ad68e978238e9ec694663d9f52d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1032\",\"sale_id\":\"551\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1868, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"547\",\"date\":\"2022-11-04 16:36:00\",\"reference_no\":\"2030\",\"customer_id\":\"458\",\"customer\":\"Ndege Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"450.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\":\"87e5438fa41d73741cb2e849ba70e25f851018708249473dc2275d4970aaabf1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1027\",\"sale_id\":\"547\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1869, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"546\",\"date\":\"2022-11-04 16:32:00\",\"reference_no\":\"2028\",\"customer_id\":\"368\",\"customer\":\"Francis Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1310.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1310.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"111\",\"pos\":\"0\",\"paid\":\"1200.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\":\"a9d169f5c7dfe07443d97d991157e76f110c6b445608d26ff123657f6074c6f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1024\",\"sale_id\":\"546\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1025\",\"sale_id\":\"546\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1026\",\"sale_id\":\"546\",\"product_id\":\"1066\",\"product_code\":\"23995551\",\"product_name\":\"c.wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1870, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"545\",\"date\":\"2022-11-04 16:25:00\",\"reference_no\":\"2026\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12285.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12285.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"12200.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\":\"b251bfc88725a0c3b212c5ae406d28a99130c64978ddd9026771224491cbadcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1023\",\"sale_id\":\"545\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12285.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1871, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"544\",\"date\":\"2022-11-04 16:24:00\",\"reference_no\":\"2025\",\"customer_id\":\"191\",\"customer\":\"Geoffrey Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7245.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\":\"edeba812589dfca7a718b4fd51663f8526839abec3c8faaa213a03a1634e5e23\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1022\",\"sale_id\":\"544\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1872, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"543\",\"date\":\"2022-11-04 16:22:00\",\"reference_no\":\"2024\",\"customer_id\":\"457\",\"customer\":\"Margret Wairimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4265.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4265.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"191\",\"pos\":\"0\",\"paid\":\"4260.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\":\"0eb2a05e1d247ed3f7ead4a8f41be6319ff04cae8c2bd8f67bf15b67ba494b2c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1016\",\"sale_id\":\"543\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1017\",\"sale_id\":\"543\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1018\",\"sale_id\":\"543\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1019\",\"sale_id\":\"543\",\"product_id\":\"1032\",\"product_code\":\"78441492\",\"product_name\":\"royal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1020\",\"sale_id\":\"543\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1021\",\"sale_id\":\"543\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1873, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"541\",\"date\":\"2022-11-04 16:16:00\",\"reference_no\":\"2023\",\"customer_id\":\"419\",\"customer\":\"Rashid Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3240.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\":\"e5dd87b2c74f1f3f47a852b3f20767da2b256a35c97f28640afbb4705d7d93ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1009\",\"sale_id\":\"541\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1874, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"540\",\"date\":\"2022-11-04 16:15:00\",\"reference_no\":\"2022\",\"customer_id\":\"456\",\"customer\":\"Simon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1260.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\":\"0c88cc54fd3f6e259fa49be83f9b030dba29a72a0cac27306258a52cf378d435\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1008\",\"sale_id\":\"540\",\"product_id\":\"1071\",\"product_code\":\"56360805\",\"product_name\":\"Managu \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1875, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"539\",\"date\":\"2022-11-04 16:13:00\",\"reference_no\":\"2021\",\"customer_id\":\"220\",\"customer\":\"James Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1475.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1475.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"f30855ee9675f2e786052aebbe6859c883df2bdbcf4932c968479e2cb83b8f49\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1006\",\"sale_id\":\"539\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1007\",\"sale_id\":\"539\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"675.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1876, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"538\",\"date\":\"2022-11-04 16:09:00\",\"reference_no\":\"2020\",\"customer_id\":\"455\",\"customer\":\"Jeremiah Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"1200.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\":\"8eb39abdb6bc40783924b93def734b40da4dde9939b24fd2ef763d004709ce13\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1003\",\"sale_id\":\"538\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1004\",\"sale_id\":\"538\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1005\",\"sale_id\":\"538\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1877, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"537\",\"date\":\"2022-11-04 15:38:00\",\"reference_no\":\"SALE0102\",\"customer_id\":\"242\",\"customer\":\"Alfred muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"6000.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\":\"21f738ab06d57f5c742ad18438749b7cff6c27b8c6337dea5c1fbc1c79de44db\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1002\",\"sale_id\":\"537\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1878, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"536\",\"date\":\"2022-11-04 12:34:00\",\"reference_no\":\"2018\",\"customer_id\":\"212\",\"customer\":\"Ezekiel munguti\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"19900.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\":\"6ea49e4961abd5f22ed9daf020abc54ff3d5776deb3604fe72c6b9c8cb848957\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1001\",\"sale_id\":\"536\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1879, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"535\",\"date\":\"2022-11-04 12:33:00\",\"reference_no\":\"2017\",\"customer_id\":\"453\",\"customer\":\"Geoffery Wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d603c71edb490090d331e71bd7c7c8f1b4f806fda67e5f3c774f1d9b9dc8abab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1000\",\"sale_id\":\"535\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1880, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"534\",\"date\":\"2022-11-04 12:30:00\",\"reference_no\":\"2016\",\"customer_id\":\"246\",\"customer\":\"David Karatu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3600.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\":\"aa8594d4d355b591ead66be9e1725b192ab5aae8a80d7ca97892b87da6b0e9f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"998\",\"sale_id\":\"534\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"999\",\"sale_id\":\"534\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1881, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"533\",\"date\":\"2022-11-04 12:29:00\",\"reference_no\":\"2015\",\"customer_id\":\"452\",\"customer\":\"Gerald Ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5000.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\":\"43da9ba6277f928d22b1953223117f223e3900bf76ab33714b9626ef15823b0a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"997\",\"sale_id\":\"533\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1882, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"532\",\"date\":\"2022-11-04 12:25:00\",\"reference_no\":\"2014\",\"customer_id\":\"451\",\"customer\":\"Isaac Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-04 12:28:10\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"f67236ce6c50fa7ad6641e94c37315b00e2e22cc814ab8dbc50ab27956e6aadf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"996\",\"sale_id\":\"532\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1883, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"550\",\"date\":\"2022-11-04 11:45:00\",\"reference_no\":\"2034\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"54000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"54000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-05 11:49:25\",\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"28000.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\":\"9951b4af115c6b537708ca3532004fdc2b83c5492698b1107d966a607b54465b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1031\",\"sale_id\":\"550\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"54000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"50.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1884, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"549\",\"date\":\"2022-11-04 11:25:00\",\"reference_no\":\"2033\",\"customer_id\":\"460\",\"customer\":\"Zachary Ngugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"243b474d5a9b96acad43d5a7ec6c2708163d71ad182c0e33a7842096627f286f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1029\",\"sale_id\":\"549\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1885, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"548\",\"date\":\"2022-11-04 11:20:00\",\"reference_no\":\"2031\",\"customer_id\":\"459\",\"customer\":\"James Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"750.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\":\"0e101c9e37f0a9b3b165376fcf6fae859784cf83f21a96a6065b1a1c3dcc89d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1028\",\"sale_id\":\"548\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1886, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"743\",\"date\":\"2022-11-04 10:30:00\",\"reference_no\":\"2019\",\"customer_id\":\"582\",\"customer\":\"Eliud muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"9000.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\":\"41561eb874425e4faebd5449f5061d7885f621db6d9665ebc871b1a324eb28fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1317\",\"sale_id\":\"743\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10710.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1887, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"511\",\"date\":\"2022-11-03 16:26:00\",\"reference_no\":\"2537\",\"customer_id\":\"438\",\"customer\":\"Rose Wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"330.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"330.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"180\",\"pos\":\"0\",\"paid\":\"330.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\":\"34e5893a1ebb3447c5093500746412d619ad46cdbc9cb84e8711adc602a5f9a1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"948\",\"sale_id\":\"511\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"949\",\"sale_id\":\"511\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"950\",\"sale_id\":\"511\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1888, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"510\",\"date\":\"2022-11-03 16:22:00\",\"reference_no\":\"2536\",\"customer_id\":\"411\",\"customer\":\"Eliud Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"f05a5ce63109fb91d52c79456b7b1ce14a0bac0eeab9b972548951e0701d4f93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"939\",\"sale_id\":\"510\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1889, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"509\",\"date\":\"2022-11-03 16:15:00\",\"reference_no\":\"2532\",\"customer_id\":\"437\",\"customer\":\"Kagio Sec\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3750.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\":\"75a7b09de82ceb0b955e617ad3116d3e1762c2665db154d7cc30f02a85a81a45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"938\",\"sale_id\":\"509\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1890, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"508\",\"date\":\"2022-11-03 16:03:00\",\"reference_no\":\"2531\",\"customer_id\":\"146\",\"customer\":\"Pastor\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"5000.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\":\"c28c699f34a96d61c74751bd7ad44c83b68fa757fddb881df9e48e7c80aedec7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"936\",\"sale_id\":\"508\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"937\",\"sale_id\":\"508\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1891, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"719\",\"date\":\"2022-11-03 16:00:00\",\"reference_no\":\"2539\",\"customer_id\":\"439\",\"customer\":\"Ken\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-29 16:07:57\",\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"1600.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\":\"b1ba4d377bd507328d91776c1bf5fa09cad7f6f9ba43c0f3ce638827f997dbc3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1285\",\"sale_id\":\"719\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1892, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"507\",\"date\":\"2022-11-03 15:56:00\",\"reference_no\":\"2530\",\"customer_id\":\"267\",\"customer\":\"Emmanuel  Mbiu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8190.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8190.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"7190.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\":\"a7412eb02c8f80ac514441b7aaa8d08a34091641e4a3aefbc6bb4bb1750d40b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"935\",\"sale_id\":\"507\",\"product_id\":\"998\",\"product_code\":\"62393307\",\"product_name\":\"gloria\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8190.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1893, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"506\",\"date\":\"2022-11-03 15:55:00\",\"reference_no\":\"2529\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"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\":\"995bd0ea79c71d4fdb45cf9781c52c277b738658b0f534231802bac63a0176a1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"934\",\"sale_id\":\"506\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1894, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"505\",\"date\":\"2022-11-03 15:53:00\",\"reference_no\":\"2528\",\"customer_id\":\"436\",\"customer\":\"Janiffer muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"4cd22d7bbaace11b32519dbfa2d497024549164d6cc15c7e5f5fd91d7917a5f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"933\",\"sale_id\":\"505\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1895, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"495\",\"date\":\"2022-11-03 12:24:00\",\"reference_no\":\"2516\",\"customer_id\":\"431\",\"customer\":\"willy\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"315.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"170\",\"pos\":\"0\",\"paid\":\"315.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\":\"d9820e11035ddb1276d51e4560f4874334bba8f9154e8a9fae12e9bf39ba3525\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"913\",\"sale_id\":\"495\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"914\",\"sale_id\":\"495\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"915\",\"sale_id\":\"495\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"ahadi sukuma pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1896, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"531\",\"date\":\"2022-11-03 12:20:00\",\"reference_no\":\"2013\",\"customer_id\":\"450\",\"customer\":\"John Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"293fcea87c2a4533dff252f3aa0384c224e4a3a9c975e2f04e288e8054d49565\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"994\",\"sale_id\":\"531\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1897, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"530\",\"date\":\"2022-11-03 12:05:00\",\"reference_no\":\"2012\",\"customer_id\":\"149\",\"customer\":\"Murimi Agrovet\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"188590.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"188590.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-07 13:00:34\",\"total_items\":\"295\",\"pos\":\"0\",\"paid\":\"126860.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\":\"a805c2710939e792a1a92140e84b13f38005edf8f209f5a8755924f108ea5b0f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1345\",\"sale_id\":\"530\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"32.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1346\",\"sale_id\":\"530\",\"product_id\":\"1021\",\"product_code\":\"04279993\",\"product_name\":\"tom 4420\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1347\",\"sale_id\":\"530\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1348\",\"sale_id\":\"530\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"47.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"47.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1349\",\"sale_id\":\"530\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"123.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"78720.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"123.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1350\",\"sale_id\":\"530\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"44.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"44.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1351\",\"sale_id\":\"530\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17920.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1898, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"529\",\"date\":\"2022-11-03 11:45:00\",\"reference_no\":\"2011\",\"customer_id\":\"449\",\"customer\":\"Shadrack Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"5000.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\":\"41c49f9b19bd556d5f5726a440ffed2906da1fdd3b3e00d7d5133cc1b25cfea6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"985\",\"sale_id\":\"529\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1899, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"528\",\"date\":\"2022-11-03 11:40:00\",\"reference_no\":\"2010\",\"customer_id\":\"213\",\"customer\":\"Geoffrey mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"16200.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\":\"c69624efb909b54fe09beb15d2e400e2399abb90130dee4b33b5d51cce07e31c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"984\",\"sale_id\":\"528\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1900, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"527\",\"date\":\"2022-11-03 11:35:00\",\"reference_no\":\"2009\",\"customer_id\":\"448\",\"customer\":\"john irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"16a518e35206beae6519437c0d476b2883c73b35513751ba5e1c4fcd8e8d439b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"983\",\"sale_id\":\"527\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1901, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"525\",\"date\":\"2022-11-03 11:30:00\",\"reference_no\":\"2006\",\"customer_id\":\"446\",\"customer\":\"Leonard Cimba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"3115c9530355c0e71514d64c4b811e152cdc38a3df69f5fdba463e334f585b7c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"980\",\"sale_id\":\"525\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1902, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"526\",\"date\":\"2022-11-03 11:25:00\",\"reference_no\":\"2008\",\"customer_id\":\"447\",\"customer\":\"Simon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-04 11:34:13\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2700.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\":\"b533862ebae4e7c7f8bcc1654a89ec54255c74221ec2e43f4dc8faf5453cc68a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"982\",\"sale_id\":\"526\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1903, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"524\",\"date\":\"2022-11-03 11:25:00\",\"reference_no\":\"2005\",\"customer_id\":\"445\",\"customer\":\"Francis Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2455.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2455.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"252\",\"pos\":\"0\",\"paid\":\"2450.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\":\"1065e4d4986d817f0e8aecccb68a3f77abe34fe3e9fcd02002fbb1d087845945\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"976\",\"sale_id\":\"524\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"977\",\"sale_id\":\"524\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"978\",\"sale_id\":\"524\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"979\",\"sale_id\":\"524\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1904, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"523\",\"date\":\"2022-11-03 11:15:00\",\"reference_no\":\"2001\",\"customer_id\":\"444\",\"customer\":\"Peter Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1290.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1290.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-04 11:18:53\",\"total_items\":\"71\",\"pos\":\"0\",\"paid\":\"1200.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\":\"e6e3db0c3c4ded31f90259587bc57e834e05b1e8c1e123f5b959444c6498c3d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"971\",\"sale_id\":\"523\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"972\",\"sale_id\":\"523\",\"product_id\":\"1066\",\"product_code\":\"23995551\",\"product_name\":\"c.wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"210.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1905, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"522\",\"date\":\"2022-11-03 11:05:00\",\"reference_no\":\"2550\",\"customer_id\":\"425\",\"customer\":\"John Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"d3a34e2e3e5f23681ad17368c5c89047557f5cbce4e602edafbd6560c030f514\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"968\",\"sale_id\":\"522\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1906, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"521\",\"date\":\"2022-11-03 11:05:00\",\"reference_no\":\"2549\",\"customer_id\":\"443\",\"customer\":\"John Kithome\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"21\",\"pos\":\"0\",\"paid\":\"14750.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\":\"73594dc2fd5546b2ae48f5657738238ea8d7efd36a9d08eeddb6052b656cab93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"964\",\"sale_id\":\"521\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"965\",\"sale_id\":\"521\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"966\",\"sale_id\":\"521\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1890.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"967\",\"sale_id\":\"521\",\"product_id\":\"1071\",\"product_code\":\"56360805\",\"product_name\":\"Managu \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1907, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"520\",\"date\":\"2022-11-03 11:00:00\",\"reference_no\":\"2548\",\"customer_id\":\"442\",\"customer\":\"Patrick Mundia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3750.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\":\"9e8067161b447e0eeff6f694624689a8acb72327cb1278696e42170879a4d6f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"963\",\"sale_id\":\"520\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1908, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"518\",\"date\":\"2022-11-03 11:00:00\",\"reference_no\":\"2547\",\"customer_id\":\"441\",\"customer\":\"Gabriel Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2140.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2140.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"182\",\"pos\":\"0\",\"paid\":\"2140.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\":\"9e660ccfe8d9680c6afad0981efe8ed2941bd7b8c8e7ba0b2134935317df702a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"960\",\"sale_id\":\"518\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"961\",\"sale_id\":\"518\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"180.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"180.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1909, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"517\",\"date\":\"2022-11-03 10:50:00\",\"reference_no\":\"2546\",\"customer_id\":\"386\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1900.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\":\"eeb6a5a52811b9f3b0be1d5a5d72f049aa5c00514981df84fd29647876bd84c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"958\",\"sale_id\":\"517\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1910, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"516\",\"date\":\"2022-11-03 10:45:00\",\"reference_no\":\"2545\",\"customer_id\":\"440\",\"customer\":\"Margret Wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-04 10:58:44\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"cdfef80a4d9300746f55cb25c6d8abf1b5e69b3ecc18d37a6b1897714d837b64\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"959\",\"sale_id\":\"516\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1911, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"515\",\"date\":\"2022-11-03 10:20:00\",\"reference_no\":\"2543\",\"customer_id\":\"335\",\"customer\":\"Antony Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"6500.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\":\"f0e3e038d79f283b0690c83f3944885d79eabc33eabc97e75618b21b68fdf795\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"956\",\"sale_id\":\"515\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1912, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"514\",\"date\":\"2022-11-03 10:15:00\",\"reference_no\":\"2540\",\"customer_id\":\"245\",\"customer\":\"Alfred chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"f1ef11a05d34a23a8807ecf626b0a6f243d1644c4b694f5b3376752a70d57826\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"954\",\"sale_id\":\"514\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"955\",\"sale_id\":\"514\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1913, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"513\",\"date\":\"2022-11-03 09:30:00\",\"reference_no\":\"2539\",\"customer_id\":\"439\",\"customer\":\"Ken\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"1000.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\":\"2e0fb8e1a8bb4407a99d4df3632ce6bfd91cd279d1a27cc3c2a4e846edbe233a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"953\",\"sale_id\":\"513\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"50.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1914, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"481\",\"date\":\"2022-11-02 17:02:00\",\"reference_no\":\"1798\",\"customer_id\":\"422\",\"customer\":\"Alex Munene Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2700.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\":\"cfea228a60dd7c4c0338dec1028f70a71242eede7c950ca2e2f2951774d839b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"887\",\"sale_id\":\"481\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1915, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"480\",\"date\":\"2022-11-02 16:57:00\",\"reference_no\":\"SALE0099\",\"customer_id\":\"126\",\"customer\":\"Julias Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"0e7a0295da16fbbc974747d97509366922ace91ecda3ecb84464a507df492f9d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"886\",\"sale_id\":\"480\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1916, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"479\",\"date\":\"2022-11-02 16:56:00\",\"reference_no\":\"1796\",\"customer_id\":\"421\",\"customer\":\"Moses Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5350.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\":\"3b611842dd29365831d7e58b1583ff085b091e3b0b3c09267a9c9fe3b8731dd6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"885\",\"sale_id\":\"479\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1917, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"477\",\"date\":\"2022-11-02 16:34:00\",\"reference_no\":\"1792\",\"customer_id\":\"419\",\"customer\":\"Rashid Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"a9e6d18ddb5880ee0766532d3311e3d5364e848b92de4d53a5369d9636a1bb8c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"882\",\"sale_id\":\"477\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1918, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"512\",\"date\":\"2022-11-02 16:25:00\",\"reference_no\":\"2538\",\"customer_id\":\"277\",\"customer\":\"Gaddafi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"6930.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\":\"8ddab93ee1325b941181574a1610f21b930b92df29263063ad9cdce5d9a03257\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"951\",\"sale_id\":\"512\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"952\",\"sale_id\":\"512\",\"product_id\":\"1021\",\"product_code\":\"04279993\",\"product_name\":\"tom 4420\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1919, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"504\",\"date\":\"2022-11-02 15:45:00\",\"reference_no\":\"2527\",\"customer_id\":\"151\",\"customer\":\"Maureen\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"300.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\":\"05e613f05978a0726211e6c1c2eba65430d5b837eb307bb97e77a4c8a126488f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"932\",\"sale_id\":\"504\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1920, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"469\",\"date\":\"2022-11-02 15:23:00\",\"reference_no\":\"1785\",\"customer_id\":\"414\",\"customer\":\"Pricilla\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"150\",\"pos\":\"0\",\"paid\":\"300.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\":\"d4b2c4f9eb08bdf7628a463c5c4c40b755c825a34727f6b1e4bc9b7f531e016e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"871\",\"sale_id\":\"469\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"872\",\"sale_id\":\"469\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"ahadi sukuma pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"873\",\"sale_id\":\"469\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1921, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"503\",\"date\":\"2022-11-02 15:20:00\",\"reference_no\":\"2526\",\"customer_id\":\"307\",\"customer\":\"Kelvin Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"150\",\"pos\":\"0\",\"paid\":\"300.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\":\"35ba6c58909dc83b97e675fc8e9cd28ecfe4013e65c167aa8bb95717467b0ac3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"931\",\"sale_id\":\"503\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1922, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"502\",\"date\":\"2022-11-02 15:15:00\",\"reference_no\":\"2525\",\"customer_id\":\"435\",\"customer\":\"Albert Kairu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"765.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\":\"def4e2711c21b8b6afa6bf39a8a2a00480979ba5cd7469b1262f69e3c7fa9dd0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"929\",\"sale_id\":\"502\",\"product_id\":\"1070\",\"product_code\":\"91519144\",\"product_name\":\"Indra\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"640.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"930\",\"sale_id\":\"502\",\"product_id\":\"1069\",\"product_code\":\"68868691\",\"product_name\":\"Admiral\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"640.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1923, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"501\",\"date\":\"2022-11-02 15:15:00\",\"reference_no\":\"2523\",\"customer_id\":\"434\",\"customer\":\"Daniel Gikunju\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2380.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2380.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2300.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\":\"8df2a7b7309d580e2df1c238571bab925c3938458963eab0920874fa18f69911\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"927\",\"sale_id\":\"501\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"928\",\"sale_id\":\"501\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1924, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"500\",\"date\":\"2022-11-02 15:05:00\",\"reference_no\":\"1800\",\"customer_id\":\"214\",\"customer\":\"Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"60650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"60650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-11 10:34:38\",\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"60050.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\":\"b102fc7cb86e281d4c09fe88a43e418a719158c6151281149fbd8db2ef949b42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1082\",\"sale_id\":\"500\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"mix tomatoes\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"45.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1083\",\"sale_id\":\"500\",\"product_id\":\"4294967295\",\"product_code\":\"royal\",\"product_name\":\"royal seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"4400.0000\",\"unit_price\":\"4400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1084\",\"sale_id\":\"500\",\"product_id\":\"4294967295\",\"product_code\":\"ansal\",\"product_name\":\"ansal seed\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"7300.0000\",\"unit_price\":\"7300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7300.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1085\",\"sale_id\":\"500\",\"product_id\":\"4294967295\",\"product_code\":\"Nouvelle\",\"product_name\":\"Nouvelle\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"4300.0000\",\"unit_price\":\"4300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4300.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1086\",\"sale_id\":\"500\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1925, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"498\",\"date\":\"2022-11-02 12:30:00\",\"reference_no\":\"2522\",\"customer_id\":\"264\",\"customer\":\"Simon Peter\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7560.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\":\"1bb8ead546fe0d7bf52a9c97109093e125964b7af7ab146381a961baaa73ff44\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"918\",\"sale_id\":\"498\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1926, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"497\",\"date\":\"2022-11-02 12:30:00\",\"reference_no\":\"2520\",\"customer_id\":\"433\",\"customer\":\"Charles Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1350.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\":\"14bf419bd33a0401f6195652acc4cdad76280934b904ea9208f8006b22daf4b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"917\",\"sale_id\":\"497\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1927, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"496\",\"date\":\"2022-11-02 12:25:00\",\"reference_no\":\"2519\",\"customer_id\":\"432\",\"customer\":\"Trinity\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"52454d61ceebed6deede0a5fd75a8a7d64943bd8bb6230457b56ec585d0ac1b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"916\",\"sale_id\":\"496\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1928, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"494\",\"date\":\"2022-11-02 12:20:00\",\"reference_no\":\"2515\",\"customer_id\":\"430\",\"customer\":\"nderitu police\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"800.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\":\"bc10eb9fcb19e0420709bb3a94dede556121805ef988aa079e3d79267decc71b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"911\",\"sale_id\":\"494\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"912\",\"sale_id\":\"494\",\"product_id\":\"1068\",\"product_code\":\"45930987\",\"product_name\":\"kiboko pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1929, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"493\",\"date\":\"2022-11-02 12:15:00\",\"reference_no\":\"2514\",\"customer_id\":\"398\",\"customer\":\"John Kabui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1250.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\":\"63a32a2713ff6a71ba708364569f0f70a53bf3d5e2dad175bfdb206e05bf262a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"910\",\"sale_id\":\"493\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1930, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"491\",\"date\":\"2022-11-02 12:10:00\",\"reference_no\":\"2513\",\"customer_id\":\"400\",\"customer\":\"Francis Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1350.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\":\"fe88c1ac2e7c4ed70544e6fee00251df7eb2a6895e778f17ff12be4e5c2b59ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"908\",\"sale_id\":\"491\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1931, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"489\",\"date\":\"2022-11-02 11:55:00\",\"reference_no\":\"2511\",\"customer_id\":\"428\",\"customer\":\"Stanly Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"682a5521bf26bbe5ca4597ad5858f3e057e36fef6f9c10e0364609dc13ac958f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"900\",\"sale_id\":\"489\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1932, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"490\",\"date\":\"2022-11-02 11:55:00\",\"reference_no\":\"2510\",\"customer_id\":\"429\",\"customer\":\"Patrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1109.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1109.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"290\",\"pos\":\"0\",\"paid\":\"1110.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\":\"d35aff84200a9a52ad18bde4e2341ee4dd9d9920b656357dd4c57e30d3b4425b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"901\",\"sale_id\":\"490\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"75.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"902\",\"sale_id\":\"490\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"55.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"110.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"55.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"903\",\"sale_id\":\"490\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"52.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"104.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"52.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"904\",\"sale_id\":\"490\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"905\",\"sale_id\":\"490\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"906\",\"sale_id\":\"490\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"907\",\"sale_id\":\"490\",\"product_id\":\"1067\",\"product_code\":\"43349242\",\"product_name\":\"Managu pc\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1933, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"488\",\"date\":\"2022-11-02 11:50:00\",\"reference_no\":\"2509\",\"customer_id\":\"216\",\"customer\":\"Johnmark\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5000.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\":\"ab8c4b362f8c63581eb48c507cf013917431f10791c3e7f94a281a384d4407f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"899\",\"sale_id\":\"488\",\"product_id\":\"989\",\"product_code\":\"50584967\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1934, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"487\",\"date\":\"2022-11-02 11:50:00\",\"reference_no\":\"2508\",\"customer_id\":\"427\",\"customer\":\"Charles Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"66edf4d408f88a18506223aee18eda582ec750bb7f5f9e4e9415d90e09c7a2c6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"898\",\"sale_id\":\"487\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1935, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"486\",\"date\":\"2022-11-02 11:45:00\",\"reference_no\":\"2507\",\"customer_id\":\"426\",\"customer\":\"Peter Kiragu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1550.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"1550.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\":\"9a0a7afaec990d25ef957bfd84701740bd1f4fc530165860c743d1ee95c5bfaf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"896\",\"sale_id\":\"486\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"897\",\"sale_id\":\"486\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1936, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"485\",\"date\":\"2022-11-02 11:15:00\",\"reference_no\":\"2506\",\"customer_id\":\"316\",\"customer\":\"John Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"f880b8b88d149919416a12e5533141ef8a0c7bcc0611ebc191903f871d08e9dc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"895\",\"sale_id\":\"485\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1937, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"484\",\"date\":\"2022-11-02 11:10:00\",\"reference_no\":\"2504\",\"customer_id\":\"425\",\"customer\":\"John Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4000.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\":\"8dd29252cee57807aa4cbe8495bbe50b3618604078f802629d463b7c01f555e8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"894\",\"sale_id\":\"484\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1938, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"483\",\"date\":\"2022-11-02 10:55:00\",\"reference_no\":\"2501\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15180.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15180.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"149\",\"pos\":\"0\",\"paid\":\"9370.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\":\"d28130361ae63fc43941f9628ff63692be8e12af65a91ed25be869a96feb1722\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"890\",\"sale_id\":\"483\",\"product_id\":\"985\",\"product_code\":\"62358330\",\"product_name\":\"rafano       \",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"891\",\"sale_id\":\"483\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"892\",\"sale_id\":\"483\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"893\",\"sale_id\":\"483\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"129.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2580.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"129.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1939, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"482\",\"date\":\"2022-11-02 10:35:00\",\"reference_no\":\"1799\",\"customer_id\":\"423\",\"customer\":\"James Muchira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4320.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\":\"599e1ce4605fec28fb5107d27748c3885f5c839118a0388956d4185ba5d0831b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"888\",\"sale_id\":\"482\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"889\",\"sale_id\":\"482\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1940, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"460\",\"date\":\"2022-11-01 16:36:00\",\"reference_no\":\"1768\",\"customer_id\":\"284\",\"customer\":\"Raphael Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"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\":\"eebded938f6df2384be8610f8f9a689c8931e8462a82a8e11752575b08bf75ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"860\",\"sale_id\":\"460\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1941, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"478\",\"date\":\"2022-11-01 16:35:00\",\"reference_no\":\"1793\",\"customer_id\":\"263\",\"customer\":\"Leonard\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"48510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"48510.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"77\",\"pos\":\"0\",\"paid\":\"41500.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\":\"2594169d82e95ae639cb32aacf29391373521034e226811cf0296150b4a4f84f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"883\",\"sale_id\":\"478\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"34.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21735.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"884\",\"sale_id\":\"478\",\"product_id\":\"1065\",\"product_code\":\"85748817\",\"product_name\":\"Bigrock\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"42.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26775.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"42.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1942, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"459\",\"date\":\"2022-11-01 16:33:00\",\"reference_no\":\"1767\",\"customer_id\":\"384\",\"customer\":\"Simon Murigu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1350.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\":\"8c20f73e81e72385664291e28ccd48e7939e64a7f6cce3f460897e8525ef4953\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"859\",\"sale_id\":\"459\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1943, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"476\",\"date\":\"2022-11-01 16:30:00\",\"reference_no\":\"1791\",\"customer_id\":\"390\",\"customer\":\"Patrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"d4cfe7f4cf9c5546793291feeade683a04fbfee62af92ded168ee728306049b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"881\",\"sale_id\":\"476\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1944, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"475\",\"date\":\"2022-11-01 16:30:00\",\"reference_no\":\"1790\",\"customer_id\":\"418\",\"customer\":\"David Maringa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3600.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\":\"b823753f7be2cf0433b89acb5d16c823d61859a48e8d244879b8f6ba7ba97bc0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"880\",\"sale_id\":\"475\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1945, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"458\",\"date\":\"2022-11-01 16:30:00\",\"reference_no\":\"1766\",\"customer_id\":\"410\",\"customer\":\"Daniel Kamua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2430.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2430.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2350.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\":\"562a829493622f9b3e619a82d00e1ad02a698e3ff8dd2b3ba97ce2cf69d57a97\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"857\",\"sale_id\":\"458\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"858\",\"sale_id\":\"458\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1946, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"457\",\"date\":\"2022-11-01 16:27:00\",\"reference_no\":\"1765\",\"customer_id\":\"198\",\"customer\":\"Samuel Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"26\",\"pos\":\"0\",\"paid\":\"11900.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\":\"9dd5a7856105a8b88cf311de0c68ad24259d80f6da89f2806b1ca77f9fe59ce2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"856\",\"sale_id\":\"457\",\"product_id\":\"993\",\"product_code\":\"34248336\",\"product_name\":\"gallant\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"25.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1947, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"474\",\"date\":\"2022-11-01 16:25:00\",\"reference_no\":\"1789\",\"customer_id\":\"417\",\"customer\":\"Samuel Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3000.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\":\"5d71842e0003bc6c9557a1e5fceabd7189d8171b48cddb69951038d65b0c2064\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"879\",\"sale_id\":\"474\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1948, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"473\",\"date\":\"2022-11-01 16:20:00\",\"reference_no\":\"1788\",\"customer_id\":\"287\",\"customer\":\"Simon gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"1600.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\":\"99584319aa69b7534bff33322c43b3118c75e0ac947323d5025edeeedaa0c811\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"878\",\"sale_id\":\"473\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1949, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"472\",\"date\":\"2022-11-01 16:15:00\",\"reference_no\":\"1787\",\"customer_id\":\"129\",\"customer\":\"Josphat munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"8000.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\":\"8ec52e9172e5a3818a8e33473a861441c229890f6e4f1201e6e7fe313010ccce\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"877\",\"sale_id\":\"472\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1950, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"471\",\"date\":\"2022-11-01 16:10:00\",\"reference_no\":\"1780\",\"customer_id\":\"416\",\"customer\":\"Wilson Maganjo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"153\",\"pos\":\"0\",\"paid\":\"5100.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\":\"9c7345e2fd44f31c35e3b6bfbeb52a85fd5cd659a512af56329fdbce4c6bf931\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"875\",\"sale_id\":\"471\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"876\",\"sale_id\":\"471\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1951, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"470\",\"date\":\"2022-11-01 16:05:00\",\"reference_no\":\"1789\",\"customer_id\":\"415\",\"customer\":\"Pauline wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"945.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"945.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"580.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\":\"fdacf9d26d9b43c67fcfb8b0e113a4fce855dfcb453992ee518937119147ea5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"874\",\"sale_id\":\"470\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1952, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"455\",\"date\":\"2022-11-01 15:28:00\",\"reference_no\":\"1781\",\"customer_id\":\"380\",\"customer\":\"Stanley Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"350.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\":\"b1c6c14b4fe001ad59e9961cbeede6ad1a400ea4b1f68c048890f8671f201aee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"852\",\"sale_id\":\"455\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"853\",\"sale_id\":\"455\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"854\",\"sale_id\":\"455\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1953, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"468\",\"date\":\"2022-11-01 15:20:00\",\"reference_no\":\"1784\",\"customer_id\":\"413\",\"customer\":\"Harrison Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-02 15:22:33\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"27d2099db1e98f8f38ee1fff28e5cff8401c2c47230ddfb71cb6b63963c951ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"870\",\"sale_id\":\"468\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1954, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"467\",\"date\":\"2022-11-01 15:10:00\",\"reference_no\":\"1776\",\"customer_id\":\"245\",\"customer\":\"Alfred chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"bdad5b5cba93ee61c79a6a9e8aec75789054da44ba7279344224dd395de0f916\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"868\",\"sale_id\":\"467\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1955, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"466\",\"date\":\"2022-11-01 15:10:00\",\"reference_no\":\"1775\",\"customer_id\":\"412\",\"customer\":\"Daniel  Maringa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"540.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"540.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"180\",\"pos\":\"0\",\"paid\":\"500.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\":\"55f229eb43e798ce9fc7c92660f797432dfd4ec2fdfbc5deb1c84c5be7551dfa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"867\",\"sale_id\":\"466\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"180.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"180.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1956, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"465\",\"date\":\"2022-11-01 12:45:00\",\"reference_no\":\"1774\",\"customer_id\":\"411\",\"customer\":\"Eliud Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"e877df8dc747effa26a90bca34fd72e0a26030a026dcbbc3904b5e9fcd609149\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"866\",\"sale_id\":\"465\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1957, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"463\",\"date\":\"2022-11-01 12:40:00\",\"reference_no\":\"1773\",\"customer_id\":\"334\",\"customer\":\"Brian Nguru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"0ce675c54d7132509313c1b1dcadf0faeab9b48dec52295fabcbeaf94cfdb8ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"864\",\"sale_id\":\"463\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1958, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"462\",\"date\":\"2022-11-01 12:35:00\",\"reference_no\":\"1772\",\"customer_id\":\"408\",\"customer\":\"Francis Wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"18d29f8cb424875e91418f70f2418eae3d872b8d7f13d718f556399c6fb5f247\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"863\",\"sale_id\":\"462\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1959, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"461\",\"date\":\"2022-11-01 12:35:00\",\"reference_no\":\"1770\",\"customer_id\":\"407\",\"customer\":\"Isaac Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12960.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12960.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"16810.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\":\"9e8f70d4a24cae27940e103f598a0e3e6976e67b72fc2e896f40bc8460969812\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"861\",\"sale_id\":\"461\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"862\",\"sale_id\":\"461\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1960, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"601\",\"date\":\"2022-11-01 08:40:00\",\"reference_no\":\"1794\",\"customer_id\":\"420\",\"customer\":\"Eric Mathenge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49055.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49055.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-06 16:51:05\",\"total_items\":\"40\",\"pos\":\"0\",\"paid\":\"52050.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\":\"9b5be528c173768354f19d9376c18f0023ae510cea2b5ad3e60f3ed1b4c9844d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1327\",\"sale_id\":\"601\",\"product_id\":\"4294967295\",\"product_code\":\"ansal seedling\",\"product_name\":\"Ansal\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"24800.0000\",\"unit_price\":\"24800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"24800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1328\",\"sale_id\":\"601\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"38.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24255.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"38.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1961, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"454\",\"date\":\"2022-10-31 16:47:00\",\"reference_no\":\"1763\",\"customer_id\":\"230\",\"customer\":\"Samuel waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"f93c0780051bc68d42d74ab55d80ae4e8b9d0954e5162c5bea149a96b29f18e1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"851\",\"sale_id\":\"454\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1962, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"453\",\"date\":\"2022-10-31 16:39:00\",\"reference_no\":\"1761\",\"customer_id\":\"186\",\"customer\":\"James karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4725.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\":\"412d12230b422c88322f49ee9644af708375cf3840d1b401d378c5dd20876457\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"850\",\"sale_id\":\"453\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1963, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"456\",\"date\":\"2022-10-31 16:20:00\",\"reference_no\":\"1764\",\"customer_id\":\"409\",\"customer\":\"Jamleck.\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"9db6c009e10366207e4591ba1235e97703fbe13ce64a4a8d6f4304fb8c84f388\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"855\",\"sale_id\":\"456\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1964, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"451\",\"date\":\"2022-10-30 16:30:00\",\"reference_no\":\"1759\",\"customer_id\":\"400\",\"customer\":\"Francis Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"ed002c329cca2a2529586737356a65268e1959a7302b29ae1625e14e6b1ce602\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"847\",\"sale_id\":\"451\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1965, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"452\",\"date\":\"2022-10-29 16:30:00\",\"reference_no\":\"1760\",\"customer_id\":\"378\",\"customer\":\"Henry Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1430.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1430.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1430.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\":\"714590e8d32d8f0ebb26c3e9fe44663d12af255b2f64bd2a390e58ab51f7e382\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"848\",\"sale_id\":\"452\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"849\",\"sale_id\":\"452\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1966, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"449\",\"date\":\"2022-10-29 16:05:00\",\"reference_no\":\"1756\",\"customer_id\":\"398\",\"customer\":\"John Kabui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3750.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\":\"679f15233f5462520bc92f04eb249b411d245e85600ecbe419fa9427d4e35052\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"843\",\"sale_id\":\"449\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"844\",\"sale_id\":\"449\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1967, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"448\",\"date\":\"2022-10-29 14:45:00\",\"reference_no\":\"1754\",\"customer_id\":\"218\",\"customer\":\"Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1000\",\"pos\":\"0\",\"paid\":\"2000.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\":\"72628c9c1da0073d21a62e230d7d31ec8f62a44599bd2ce6e575945db95da008\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"838\",\"sale_id\":\"448\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"1000.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1000.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1968, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"447\",\"date\":\"2022-10-29 13:45:00\",\"reference_no\":\"1752\",\"customer_id\":\"372\",\"customer\":\"Muthomi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4000.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\":\"21afd3c4a204f53c8af6ee402c43e59f2ccd1ee50d28b8fc83fefa33923b8fa2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"837\",\"sale_id\":\"447\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1969, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"492\",\"date\":\"2022-10-29 12:15:00\",\"reference_no\":\"1749\",\"customer_id\":\"398\",\"customer\":\"John Kabui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"2b71a7852feb8bd4b52ff929204c5e2880eaf0b13b5c4656238a359da5e5d3d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"909\",\"sale_id\":\"492\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1970, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"446\",\"date\":\"2022-10-29 10:07:00\",\"reference_no\":\"1751\",\"customer_id\":\"399\",\"customer\":\"Paul Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"6200.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\":\"6d7c1f1925d90f4b180e5b226e0765221e17f953728b5d36938936b7f8117477\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"835\",\"sale_id\":\"446\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"836\",\"sale_id\":\"446\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1971, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"445\",\"date\":\"2022-10-28 14:00:00\",\"reference_no\":\"1750\",\"customer_id\":\"164\",\"customer\":\"John waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-29 10:05:59\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7500.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\":\"329c4c443989bb0e2b09fcec993ec07630e3f5bdfbe928bb3a18d18b0c376ea6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"833\",\"sale_id\":\"445\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1972, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"443\",\"date\":\"2022-10-28 13:05:00\",\"reference_no\":\"1748\",\"customer_id\":\"393\",\"customer\":\"Lucas Gatindi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10395.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10395.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"10300.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\":\"6e4c54b61056b1d12404629f42fb1cc8f2f0e9febbce0601b70f76f496881bea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"825\",\"sale_id\":\"443\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"826\",\"sale_id\":\"443\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1973, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"442\",\"date\":\"2022-10-28 13:02:00\",\"reference_no\":\"1747\",\"customer_id\":\"392\",\"customer\":\"Cyrus Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5400.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\":\"8ccde3068ee78701798138a1ab975a66e5f96d80203db02c3f29d64f4344483b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"824\",\"sale_id\":\"442\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1974, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"441\",\"date\":\"2022-10-28 12:59:00\",\"reference_no\":\"1746\",\"customer_id\":\"391\",\"customer\":\"Samson Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14175.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14175.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-29 10:01:22\",\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"13700.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\":\"1393fb44640afe0037b0f1884d5a2d811c6fb273b5a9b7e61c391f099e6bdcd3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"829\",\"sale_id\":\"441\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"830\",\"sale_id\":\"441\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"831\",\"sale_id\":\"441\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1975, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"440\",\"date\":\"2022-10-27 12:50:00\",\"reference_no\":\"1743\",\"customer_id\":\"390\",\"customer\":\"Patrick Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4400.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\":\"6faecb81727cf97c47560a7f53d7824d091c9ee201c43f9e5ac0139b0aa3b569\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"820\",\"sale_id\":\"440\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1976, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"439\",\"date\":\"2022-10-27 12:50:00\",\"reference_no\":\"1742\",\"customer_id\":\"389\",\"customer\":\"joseph  Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"16250.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\":\"e1fa9d0918c695d1acab33c7d333f4af5fc3422ef551e05aa85cea3846ba7ab1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"819\",\"sale_id\":\"439\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1977, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"438\",\"date\":\"2022-10-27 12:45:00\",\"reference_no\":\"1741\",\"customer_id\":\"388\",\"customer\":\"Grace Waithira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"800.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\":\"2123214ec0eeb9fe1afc6fee6b0977184831e7a7e9f37a4e5fded22936593880\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"817\",\"sale_id\":\"438\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"818\",\"sale_id\":\"438\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1978, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"437\",\"date\":\"2022-10-27 12:45:00\",\"reference_no\":\"1740\",\"customer_id\":\"387\",\"customer\":\"Charity Karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"0640edf7157d98f010bcba68160ff51a610f2bbcea8ab55f9671a6f79dad639b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"816\",\"sale_id\":\"437\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1979, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"436\",\"date\":\"2022-10-27 12:40:00\",\"reference_no\":\"1739\",\"customer_id\":\"378\",\"customer\":\"Henry Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1195.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1195.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"231\",\"pos\":\"0\",\"paid\":\"1200.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\":\"1830bca7150000cb990d7d7c33388fa82b21d64f1e2fa1e7aabe2a652fbadbe8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"813\",\"sale_id\":\"436\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"814\",\"sale_id\":\"436\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"130.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"195.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"130.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"815\",\"sale_id\":\"436\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1980, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"435\",\"date\":\"2022-10-27 08:55:00\",\"reference_no\":\"1737\",\"customer_id\":\"386\",\"customer\":\"Joseph Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3900.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\":\"f3fa2613a5dd14f20173eaa73dc702195be0b2fb3d88a05775b9a8ac963c9f42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"812\",\"sale_id\":\"435\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1981, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"432\",\"date\":\"2022-10-26 16:40:00\",\"reference_no\":\"SALE0097\",\"customer_id\":\"381\",\"customer\":\"Danson mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"1500.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\":\"fe733f044a8b1b2e6576ff44142c3c7564df45ee7818ac973a77976d6fd3fc0b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"809\",\"sale_id\":\"432\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1982, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"431\",\"date\":\"2022-10-26 16:38:00\",\"reference_no\":\"1733\",\"customer_id\":\"384\",\"customer\":\"Simon Murigu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d929be364806135191204450e4e2b942502acf1fadcf5c7f9fa004e274536bb3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"808\",\"sale_id\":\"431\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1983, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"430\",\"date\":\"2022-10-26 16:35:00\",\"reference_no\":\"1731\",\"customer_id\":\"334\",\"customer\":\"Brian Nguru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"18431d425cee7b02d88294d89ebfc1422950c90f989c3a4b4e62981ccd903f7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"807\",\"sale_id\":\"430\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1984, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"429\",\"date\":\"2022-10-26 16:31:00\",\"reference_no\":\"1730\",\"customer_id\":\"285\",\"customer\":\"Kibunja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2500.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\":\"f25e9e0b765327119e598f2783f7bf55656bbbf2535691867b2c599cb14c3fb6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"806\",\"sale_id\":\"429\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1985, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"428\",\"date\":\"2022-10-26 16:25:00\",\"reference_no\":\"1729\",\"customer_id\":\"383\",\"customer\":\"Jacob mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2450.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\":\"6586b2f8fd83661c2125394ee95761bd45485d5dbf158b6497d04ea511cb573d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"805\",\"sale_id\":\"428\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1986, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"434\",\"date\":\"2022-10-26 08:50:00\",\"reference_no\":\"1736\",\"customer_id\":\"231\",\"customer\":\"Ann wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"5d8dcd3ce579ad8877db4dce4191247c48e06fcea9edcbabd8bac50ccd1d837b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"811\",\"sale_id\":\"434\",\"product_id\":\"1001\",\"product_code\":\"85058872\",\"product_name\":\"ahadi\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1987, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"433\",\"date\":\"2022-10-26 08:50:00\",\"reference_no\":\"1735\",\"customer_id\":\"385\",\"customer\":\"Geoffrey Mugweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"34b1fc9ab539e0f7bf144bc4cec812a85bb688c4d16a439f22ffc6ec083c454b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"810\",\"sale_id\":\"433\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1988, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"427\",\"date\":\"2022-10-25 16:05:00\",\"reference_no\":\"1726\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"120.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"120.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"80\",\"pos\":\"0\",\"paid\":\"120.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\":\"639f75d0a80c608689088ffe9f1603a37ec998127e8ceb06e615ff95e6c56078\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"792\",\"sale_id\":\"427\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"80.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1989, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"425\",\"date\":\"2022-10-25 15:45:00\",\"reference_no\":\"1724\",\"customer_id\":\"380\",\"customer\":\"Stanley Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"750.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\":\"c38cf7aa46f11558e464524b1ffd2c31baee19834dfc132b6c936abb01597f93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"788\",\"sale_id\":\"425\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"789\",\"sale_id\":\"425\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"790\",\"sale_id\":\"425\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1990, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"424\",\"date\":\"2022-10-25 15:34:00\",\"reference_no\":\"1723\",\"customer_id\":\"192\",\"customer\":\"Joseph Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2000.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\":\"b6d4978711705721efcc8e82be856189f10389825f1b97bdff59eb9efba9f0fe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"787\",\"sale_id\":\"424\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1991, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"423\",\"date\":\"2022-10-25 15:31:00\",\"reference_no\":\"1721\",\"customer_id\":\"379\",\"customer\":\"Charles  Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"9e95788865f841d38c54d5f916b88fa83c4247e5492283ac2a4fa279de3e00db\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"786\",\"sale_id\":\"423\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1992, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"422\",\"date\":\"2022-10-25 15:28:00\",\"reference_no\":\"1719\",\"customer_id\":\"196\",\"customer\":\"wilson boma\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34965.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34965.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"10000.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\":\"37d215cd2965aed73d66ed12cfe6d6012600ca6ddacedc37852723da1286da76\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"783\",\"sale_id\":\"422\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"784\",\"sale_id\":\"422\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"785\",\"sale_id\":\"422\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"31.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"31.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1993, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"426\",\"date\":\"2022-10-25 15:00:00\",\"reference_no\":\"1725\",\"customer_id\":\"381\",\"customer\":\"Danson mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"450.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\":\"a2318486b2e8742785da829c65fa360cb0ed9e76b4f68d77f17fb4848204013e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"791\",\"sale_id\":\"426\",\"product_id\":\"1043\",\"product_code\":\"96395179\",\"product_name\":\"vega pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1994, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"421\",\"date\":\"2022-10-24 12:20:00\",\"reference_no\":\"1718\",\"customer_id\":\"368\",\"customer\":\"Francis Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-04 11:22:29\",\"total_items\":\"44\",\"pos\":\"0\",\"paid\":\"5280.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\":\"751b7057382aaf23f15609fdd2bb4c97ddfb23c14e6788fc36562f402006a9dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"973\",\"sale_id\":\"421\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"974\",\"sale_id\":\"421\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"975\",\"sale_id\":\"421\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1995, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"420\",\"date\":\"2022-10-24 12:15:00\",\"reference_no\":\"1717\",\"customer_id\":\"378\",\"customer\":\"Henry Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"6c92fb58351714cc4cd989e878a7f66393fe3aebaad5975ed5a7f551ab1e447b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"780\",\"sale_id\":\"420\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1996, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"419\",\"date\":\"2022-10-24 12:10:00\",\"reference_no\":\"1713\",\"customer_id\":\"362\",\"customer\":\"Kelvin  wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"131af2a996284658d1399e752cf9b8cddff07cebc31630a54414abbea3492e54\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"779\",\"sale_id\":\"419\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1997, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"418\",\"date\":\"2022-10-24 12:10:00\",\"reference_no\":\"1712\",\"customer_id\":\"254\",\"customer\":\"Jackson mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"7000.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\":\"480147ecda9b7395f4978275b0d739e276bc33b985cb6db7dbf1c61459bf13f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"778\",\"sale_id\":\"418\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1998, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"417\",\"date\":\"2022-10-24 12:10:00\",\"reference_no\":\"1711\",\"customer_id\":\"180\",\"customer\":\"Daniel shikuku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26145.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26145.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"42\",\"pos\":\"0\",\"paid\":\"29530.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\":\"e41ea2cc2ebc1989083077d8df282f2b6c2d75213f677c056dee91a853a6349b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"776\",\"sale_id\":\"417\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"777\",\"sale_id\":\"417\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1999, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"416\",\"date\":\"2022-10-24 12:05:00\",\"reference_no\":\"1710\",\"customer_id\":\"377\",\"customer\":\"Micah Nguu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1620.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1620.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"b547ab6f7f349cc6e9672513d2ed6fdc3d716cb7cd252d69a11e85e5c6014270\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"775\",\"sale_id\":\"416\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2000, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"415\",\"date\":\"2022-10-24 12:05:00\",\"reference_no\":\"1709\",\"customer_id\":\"376\",\"customer\":\"Evans wamungunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"800\",\"pos\":\"0\",\"paid\":\"1850.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\":\"5f940e14301e3737cce906f0a6677f83e2bdd403b88331cd230b6205e2b5c2c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"774\",\"sale_id\":\"415\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"800.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"800.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2001, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"450\",\"date\":\"2022-10-22 16:25:00\",\"reference_no\":\"1766\",\"customer_id\":\"213\",\"customer\":\"Geoffrey mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"25375.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\":\"5c9b859b4143bda5b26fa0169ec151aeccbf8b35ba7de23f79f1c88367acc886\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"845\",\"sale_id\":\"450\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"846\",\"sale_id\":\"450\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2002, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"411\",\"date\":\"2022-10-22 12:28:00\",\"reference_no\":\"1703\",\"customer_id\":\"242\",\"customer\":\"Alfred muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"3600.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\":\"d9a7bcf7df081cfda1f0696e34251518c4a92e53990e967982f3814d366ea965\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"767\",\"sale_id\":\"411\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"14.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2003, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"410\",\"date\":\"2022-10-22 12:24:00\",\"reference_no\":\"1701\",\"customer_id\":\"364\",\"customer\":\"Samuel Muraguri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"1000.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\":\"42e15b01aabf68ad59e6c9314513feaf4c0b24af93f9e6326a79e5831ed53a2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"766\",\"sale_id\":\"410\",\"product_id\":\"1063\",\"product_code\":\"88646382\",\"product_name\":\"f2 pawpaw\",\"product_type\":\"service\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"100.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2004, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"409\",\"date\":\"2022-10-22 12:10:00\",\"reference_no\":\"1702\",\"customer_id\":\"303\",\"customer\":\"Peter Njuguna\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"1000.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\":\"8a309d7d6ec6618a2ed5ab4b0c7809bb12251182ad88034f2e1765648b84153f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"765\",\"sale_id\":\"409\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"55.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"55.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2005, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"414\",\"date\":\"2022-10-22 12:00:00\",\"reference_no\":\"1708\",\"customer_id\":\"375\",\"customer\":\"Teressiah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"102.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"102.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"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\":\"8059960653df4f2dbe085fbcf092e244a5aac3b4a20cf8111580d3cabb798688\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"772\",\"sale_id\":\"414\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"773\",\"sale_id\":\"414\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52.5000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2006, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"413\",\"date\":\"2022-10-22 11:55:00\",\"reference_no\":\"1707\",\"customer_id\":\"374\",\"customer\":\"Mama Njiiris\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"304\",\"pos\":\"0\",\"paid\":\"3300.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\":\"67eeb71b64076cb6725624cae69368585abfe3b577124811788c7813e7b36de8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"769\",\"sale_id\":\"413\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"770\",\"sale_id\":\"413\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"771\",\"sale_id\":\"413\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2007, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"412\",\"date\":\"2022-10-22 11:45:00\",\"reference_no\":\"1706\",\"customer_id\":\"194\",\"customer\":\"Peter Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4700.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\":\"444fa0d016c8fa2b188ddda4a8466b79ce73d44891ec5f4da29f044189ddbef6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"768\",\"sale_id\":\"412\",\"product_id\":\"989\",\"product_code\":\"50584967\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2008, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"408\",\"date\":\"2022-10-21 16:53:00\",\"reference_no\":\"1700\",\"customer_id\":\"362\",\"customer\":\"Kelvin  wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4320.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\":\"9e0779102ca186db5001ef467967067b4ff3f03c4e26778d9fc725f0fd45b18e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"764\",\"sale_id\":\"408\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2009, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"406\",\"date\":\"2022-10-21 16:47:00\",\"reference_no\":\"1696\",\"customer_id\":\"143\",\"customer\":\"Josphat Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"200\",\"pos\":\"0\",\"paid\":\"400.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\":\"b12f2e37c5507ae8af3fda89b21866d5c9a472d4ac4ab927fd02ebd52e4b00ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"762\",\"sale_id\":\"406\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2010, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"405\",\"date\":\"2022-10-21 16:43:00\",\"reference_no\":\"1699\",\"customer_id\":\"361\",\"customer\":\"Mary Wambui Njoroge(alex Njoroge)\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"6500.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\":\"389669ebd83d791e4b9808b97a0a97abcc82d6a0f250c7c1f00086c86ad5941f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"761\",\"sale_id\":\"405\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2011, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"404\",\"date\":\"2022-10-21 16:39:00\",\"reference_no\":\"1698\",\"customer_id\":\"360\",\"customer\":\"Haron Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"335.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"335.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"330.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\":\"cd01cc8f192982637dfe161dfd8eab3b3e32ff6a99e4b45811921c9547291c61\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"759\",\"sale_id\":\"404\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"315.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"90.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"760\",\"sale_id\":\"404\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2012, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"403\",\"date\":\"2022-10-21 16:37:00\",\"reference_no\":\"1697\",\"customer_id\":\"359\",\"customer\":\"Catherine Ndoro\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1200.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\":\"2af10cdbd6b5ab39533cb9ff687d0d3f1ca0a8234122a6e822c7eeedcee694b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"758\",\"sale_id\":\"403\",\"product_id\":\"1045\",\"product_code\":\"50597015\",\"product_name\":\"Nova f1 seeedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2013, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"402\",\"date\":\"2022-10-21 16:35:00\",\"reference_no\":\"1695\",\"customer_id\":\"358\",\"customer\":\"Moses Njoka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"b3a38e7b0ee9e1a92ad0d7d3e0a5d06d9918be3fb248b29793e2d3684f4e8f5a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"757\",\"sale_id\":\"402\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2014, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"401\",\"date\":\"2022-10-21 16:33:00\",\"reference_no\":\"1694\",\"customer_id\":\"357\",\"customer\":\"Joseph Gathanje\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4320.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\":\"96a37477f667521d374a4e536075362bec710fcb3b3beb99f19d1e53f18234a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"756\",\"sale_id\":\"401\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2015, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"400\",\"date\":\"2022-10-21 16:25:00\",\"reference_no\":\"1692\",\"customer_id\":\"182\",\"customer\":\"Peter maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5670.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5670.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-21 16:28:59\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"4330.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\":\"0f899671188cf0a5f5adc79ac5e3fb00c702d1996e5bcd63f5df7c04834f4309\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"751\",\"sale_id\":\"400\",\"product_id\":\"1026\",\"product_code\":\"41165230\",\"product_name\":\"long purple\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"752\",\"sale_id\":\"400\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"753\",\"sale_id\":\"400\",\"product_id\":\"1025\",\"product_code\":\"49678906\",\"product_name\":\"dynasty\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"315.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2016, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"407\",\"date\":\"2022-10-20 16:45:00\",\"reference_no\":\"1687\",\"customer_id\":\"143\",\"customer\":\"Josphat Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"f647190cde3105e6c9f8279867912b0ae1e375b1ca924b067a1f472b7fe0724c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"763\",\"sale_id\":\"407\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2017, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"399\",\"date\":\"2022-10-20 15:40:00\",\"reference_no\":\"1689\",\"customer_id\":\"356\",\"customer\":\"George Ngiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"7500.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\":\"4a5fca8f2acd92ffacd2650a98aea4a23b87d26ac72553f8b5d8fed1cfe89cca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"747\",\"sale_id\":\"399\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2018, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"398\",\"date\":\"2022-10-20 15:40:00\",\"reference_no\":\"1688\",\"customer_id\":\"355\",\"customer\":\"Faith Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"62fa7ffdb3e9fe21d2f703c397508b119dfda2b5bf7c9bb8d51e9f9e993b7d3e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"746\",\"sale_id\":\"398\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2019, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"691\",\"date\":\"2022-10-20 12:15:00\",\"reference_no\":\"1691\",\"customer_id\":\"350\",\"customer\":\"Tirus Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6900.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\":\"8a7b6ac45bd12e128c377cd0d27091b7e59176a2ff2492cd07552826f5501747\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1245\",\"sale_id\":\"691\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2020, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"397\",\"date\":\"2022-10-19 15:30:00\",\"reference_no\":\"1685\",\"customer_id\":\"290\",\"customer\":\"Fredrick Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"2a786b1304d38f45f64d958d52700e0aeb03113a83af734d80960faeedabd735\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"745\",\"sale_id\":\"397\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2021, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"396\",\"date\":\"2022-10-19 14:45:00\",\"reference_no\":\"1683\",\"customer_id\":\"354\",\"customer\":\"Danson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"285\",\"pos\":\"0\",\"paid\":\"3500.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\":\"9a9d1312d787e72b31e000fee1ba65fbb5311c5ed28e7d8278549b98d5703587\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"744\",\"sale_id\":\"396\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"285.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"285.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2022, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"394\",\"date\":\"2022-10-19 14:35:00\",\"reference_no\":\"1681\",\"customer_id\":\"353\",\"customer\":\"Paul warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3750.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\":\"25e56876dcb76bc86b2e780df35ff59f12ca80c87921bb8718703c7aa5d05a2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"742\",\"sale_id\":\"394\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2023, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"393\",\"date\":\"2022-10-19 14:35:00\",\"reference_no\":\"1679\",\"customer_id\":\"352\",\"customer\":\"Henry Muiruri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"98540f571154800cad614df5732f9ebf96baa31e959a3e1c519d14728acc9bdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"741\",\"sale_id\":\"393\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2024, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"392\",\"date\":\"2022-10-19 12:55:00\",\"reference_no\":\"1672\",\"customer_id\":\"253\",\"customer\":\"Janifer Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"600.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\":\"842a13c8bde20b0c12df2ca9bbd9b35f17c044baaf6a0adf6062242e60f31901\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"740\",\"sale_id\":\"392\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2025, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"390\",\"date\":\"2022-10-19 12:50:00\",\"reference_no\":\"1671\",\"customer_id\":\"218\",\"customer\":\"Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"505\",\"pos\":\"0\",\"paid\":\"3000.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\":\"1e289d1f6ccb2fde6c934770f4bf9b70ab24a31c11ae70b3dc394fc2abd57dba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"737\",\"sale_id\":\"390\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"738\",\"sale_id\":\"390\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2026, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"686\",\"date\":\"2022-10-19 11:50:00\",\"reference_no\":\"1684\",\"customer_id\":\"348\",\"customer\":\"Stephen Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"7745.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\":\"e1c585b4d343764d52cf39623296dc1da15077e9087fcaa5b06091a42abda55f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1239\",\"sale_id\":\"686\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1240\",\"sale_id\":\"686\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2027, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"383\",\"date\":\"2022-10-18 16:21:00\",\"reference_no\":\"1665\",\"customer_id\":\"185\",\"customer\":\"David kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8820.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8820.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"9500.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\":\"92948f23d9459acd27da801f034f80b1e2c8b1c282246bcdb26ff149791f4d0b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"715\",\"sale_id\":\"383\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8820.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"14.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2028, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"382\",\"date\":\"2022-10-18 16:19:00\",\"reference_no\":\"1664\",\"customer_id\":\"286\",\"customer\":\"Nancy muthoni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"740.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\":\"29a65a3f511728aee67e0753cf6badb95c1ff4bf8665d32b5d9a4482d8862461\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"714\",\"sale_id\":\"382\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2029, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"381\",\"date\":\"2022-10-18 16:17:00\",\"reference_no\":\"1663\",\"customer_id\":\"339\",\"customer\":\"Roseline Cherono\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"775.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"775.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-18 16:31:41\",\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"775.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\":\"ad1907920bb3fe154de2e72c30fe1e57e3685a56dc056b92324105627bed49c0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"718\",\"sale_id\":\"381\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"200.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"200.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"719\",\"sale_id\":\"381\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"720\",\"sale_id\":\"381\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"721\",\"sale_id\":\"381\",\"product_id\":\"1030\",\"product_code\":\"36992338\",\"product_name\":\"bwts pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2030, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"380\",\"date\":\"2022-10-18 16:12:00\",\"reference_no\":\"1662\",\"customer_id\":\"236\",\"customer\":\"Janet mithamo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"600.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\":\"cf9aafc74cf209feb9ca992f27cf3b40b72877f967811bef484c52b284ebfa64\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"709\",\"sale_id\":\"380\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2031, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"385\",\"date\":\"2022-10-18 16:10:00\",\"reference_no\":\"1661\",\"customer_id\":\"169\",\"customer\":\"murimi maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-18 16:34:14\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"780.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\":\"4211b7b5be98523508c7a889e29563bd6d552faadacb04fa7889c0625dc90fad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"723\",\"sale_id\":\"385\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2032, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"379\",\"date\":\"2022-10-18 16:00:00\",\"reference_no\":\"1660\",\"customer_id\":\"310\",\"customer\":\"James Kibebe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"6436e1e27dbee762e10d385cfb46271feb951586700c01bab25e648b6c568230\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"708\",\"sale_id\":\"379\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2033, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"378\",\"date\":\"2022-10-18 15:49:00\",\"reference_no\":\"1659\",\"customer_id\":\"338\",\"customer\":\"Charles mahiu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"02e2f6c7bf8fa454254f994ebc3bc83253e9c34216ccbbe74f8fff90f521b6aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"707\",\"sale_id\":\"378\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2034, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"377\",\"date\":\"2022-10-18 15:45:00\",\"reference_no\":\"1658\",\"customer_id\":\"220\",\"customer\":\"James Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"11025.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\":\"147a7640322532b901239faa1b645833a20482eb26336cad50ba659aa90bd05c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"705\",\"sale_id\":\"377\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"706\",\"sale_id\":\"377\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2035, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"244\",\"date\":\"2022-10-18 15:30:00\",\"reference_no\":\"1657\",\"customer_id\":\"155\",\"customer\":\"Stephen Mwaniki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30870.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30870.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-18 16:38:48\",\"total_items\":\"49\",\"pos\":\"0\",\"paid\":\"30870.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\":\"588ba423ee5546977420c76ff9a4fe534ef96e34c15113bb70791375cb844b56\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"725\",\"sale_id\":\"244\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"49.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30870.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"49.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2036, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"645\",\"date\":\"2022-10-18 12:50:00\",\"reference_no\":\"1668\",\"customer_id\":\"342\",\"customer\":\"Patrick Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2830.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\":\"fd5e44e32c07874d5a50d4cc101cc8119dcabe307f36a63ca7c632fb48ea2440\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1188\",\"sale_id\":\"645\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2037, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"388\",\"date\":\"2022-10-18 12:40:00\",\"reference_no\":\"1670\",\"customer_id\":\"351\",\"customer\":\"Jane Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13960.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13960.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"698\",\"pos\":\"0\",\"paid\":\"12180.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\":\"853f7a39123c48f19fde79e2a28e8cd377f555dbab7e7f498742452ea8cd2a13\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"730\",\"sale_id\":\"388\",\"product_id\":\"1003\",\"product_code\":\"10491111\",\"product_name\":\"vega f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"698.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13960.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"698.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2038, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"387\",\"date\":\"2022-10-18 12:35:00\",\"reference_no\":\"1669\",\"customer_id\":\"317\",\"customer\":\"Simon Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1480.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\":\"6de964b1376c62e4646070fa382091767b53edcbc9bf6a3df218b457919b71a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"728\",\"sale_id\":\"387\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"729\",\"sale_id\":\"387\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2039, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"692\",\"date\":\"2022-10-18 12:15:00\",\"reference_no\":\"1668\",\"customer_id\":\"342\",\"customer\":\"Patrick Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2830.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\":\"c101930d61128f43ededda638c800344cf7051acaa3cc26df4b2f2282c4af805\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1246\",\"sale_id\":\"692\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2040, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"386\",\"date\":\"2022-10-18 10:30:00\",\"reference_no\":\"1667\",\"customer_id\":\"341\",\"customer\":\"Joel  Kihohia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-21 12:35:57\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"f7b552bc9b4f23201310b9b3aa4a03745f1fb56d84b5c7ae1b0d12708967b547\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"727\",\"sale_id\":\"386\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2041, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"375\",\"date\":\"2022-10-17 16:36:00\",\"reference_no\":\"1655\",\"customer_id\":\"336\",\"customer\":\"Michael Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"f54b70a29f630c0819109bfbe67e64b3125cb1a442150a0824b868dc4c319778\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"702\",\"sale_id\":\"375\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2042, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"374\",\"date\":\"2022-10-17 16:34:00\",\"reference_no\":\"1654\",\"customer_id\":\"246\",\"customer\":\"David Karatu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"251\",\"pos\":\"0\",\"paid\":\"1300.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\":\"1011adb24703e71f358f96fc3c7328bc3ecf697d8a884cac241a5be82308bf21\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"700\",\"sale_id\":\"374\",\"product_id\":\"1058\",\"product_code\":\"92467493\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"250.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"250.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"701\",\"sale_id\":\"374\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2043, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"373\",\"date\":\"2022-10-17 16:33:00\",\"reference_no\":\"1653\",\"customer_id\":\"335\",\"customer\":\"Antony Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"95215065cf54f83687e5408ccd3e7c9926d20397b4c6d7c76e19a3bd3f148e7f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"699\",\"sale_id\":\"373\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2044, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"372\",\"date\":\"2022-10-17 16:29:00\",\"reference_no\":\"1652\",\"customer_id\":\"334\",\"customer\":\"Brian Nguru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"7e1860ad666ea4b6ce408573cb83acf2e13c117071e1e6da15b72692785fda24\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"698\",\"sale_id\":\"372\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2045, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"371\",\"date\":\"2022-10-17 16:27:00\",\"reference_no\":\"1651\",\"customer_id\":\"255\",\"customer\":\"Gladys Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"e9c4797b92fa773803ded2f7a0e17badb4581ba55cad18db6166c815a9f930d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"697\",\"sale_id\":\"371\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2046, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"207\",\"date\":\"2022-10-17 14:10:00\",\"reference_no\":\"1644\",\"customer_id\":\"158\",\"customer\":\"Harrison Murigu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27720.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27720.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-17 12:06:40\",\"total_items\":\"44\",\"pos\":\"0\",\"paid\":\"20000.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\":\"5719889cc41864aa5a4699d8c6d647004e6c390206e6c7a5184fbd5eafbefe6c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"688\",\"sale_id\":\"207\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10710.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"689\",\"sale_id\":\"207\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17010.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"27.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2047, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"369\",\"date\":\"2022-10-17 12:22:00\",\"reference_no\":\"1648\",\"customer_id\":\"332\",\"customer\":\"John Njoka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"8260.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\":\"9afca2158fa1d3b2d6453f77f608eb638950132c4208b3c81cc9655b29375096\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"695\",\"sale_id\":\"369\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2048, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"368\",\"date\":\"2022-10-17 12:18:00\",\"reference_no\":\"1647\",\"customer_id\":\"230\",\"customer\":\"Samuel waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"15750.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\":\"e8e56f13617b24b20616368579936ec04f0c720fb8df31e2d7e5542471a21535\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"694\",\"sale_id\":\"368\",\"product_id\":\"997\",\"product_code\":\"17040387\",\"product_name\":\"zawadi f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2049, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"367\",\"date\":\"2022-10-17 12:15:00\",\"reference_no\":\"1646\",\"customer_id\":\"331\",\"customer\":\"Dan Gikunju\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"ec4b083b5c0821cc343849d8bfdb13ced9614ecf969aa2396cc44e1d80b91460\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"693\",\"sale_id\":\"367\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2050, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"366\",\"date\":\"2022-10-17 12:11:00\",\"reference_no\":\"1645\",\"customer_id\":\"152\",\"customer\":\"Murimi Gitungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"11340.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\":\"4f6c453e592764526ea5c77b64318ef569a5e2bbc0654393c27445833f774644\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"690\",\"sale_id\":\"366\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"691\",\"sale_id\":\"366\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"692\",\"sale_id\":\"366\",\"product_id\":\"1021\",\"product_code\":\"04279993\",\"product_name\":\"tom 4420\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2051, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"365\",\"date\":\"2022-10-17 12:00:00\",\"reference_no\":\"1643\",\"customer_id\":\"330\",\"customer\":\"Lilian Wanja Gathaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"88d793d49bc640d62df77fe0ad1a7d322bcfb40a3af9fa353ff391efcc8f711b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"685\",\"sale_id\":\"365\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2052, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"978\",\"date\":\"2022-10-16 10:10:00\",\"reference_no\":\"1666\",\"customer_id\":\"340\",\"customer\":\"Jane Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"21200.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\":\"32aff385c5efc1a19477f92fa7c25355da86f15bd88f84eb13b67554cd4a6157\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1704\",\"sale_id\":\"978\",\"product_id\":\"1061\",\"product_code\":\"87787898\",\"product_name\":\"Demon f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2053, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"364\",\"date\":\"2022-10-15 11:55:00\",\"reference_no\":\"1641\",\"customer_id\":\"329\",\"customer\":\"Antony Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"fefa029c4cd8a49c5ffe2a74066d36cb02852785d2cb8f5fc2569653495032ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"684\",\"sale_id\":\"364\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2054, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"363\",\"date\":\"2022-10-15 11:25:00\",\"reference_no\":\"1640\",\"customer_id\":\"328\",\"customer\":\"Mwaura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3375.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3375.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3375.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\":\"8f0843a99ff965ca2963d4d43b9390930b820255a98e1e64fd1aa83327c6d2d0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"683\",\"sale_id\":\"363\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3375.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2055, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"362\",\"date\":\"2022-10-15 11:20:00\",\"reference_no\":\"1639\",\"customer_id\":\"327\",\"customer\":\"James Njagi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"c8ae762fd04a62ebf088a7eed7c8c4533287acceb7deb9ca0d000e94964b902a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"682\",\"sale_id\":\"362\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2056, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"361\",\"date\":\"2022-10-15 11:15:00\",\"reference_no\":\"1638\",\"customer_id\":\"326\",\"customer\":\"Humphrey Ngeruro\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"160.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\":\"30316c53d70a79f4a00581f51a720d30535b29e9eb7bd00dda7516e350101092\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"680\",\"sale_id\":\"361\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"681\",\"sale_id\":\"361\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2057, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"360\",\"date\":\"2022-10-15 11:05:00\",\"reference_no\":\"1637\",\"customer_id\":\"325\",\"customer\":\"Pricilla Cianda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"75\",\"pos\":\"0\",\"paid\":\"3700.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\":\"0e75f710849eaaa689a3744d003396138f312c984f9a08b3a2bef5349c93759c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"676\",\"sale_id\":\"360\",\"product_id\":\"1036\",\"product_code\":\"86699062\",\"product_name\":\"zawadi pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"677\",\"sale_id\":\"360\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"678\",\"sale_id\":\"360\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"679\",\"sale_id\":\"360\",\"product_id\":\"1059\",\"product_code\":\"02044109\",\"product_name\":\"cucumber pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2058, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"359\",\"date\":\"2022-10-15 10:55:00\",\"reference_no\":\"1635\",\"customer_id\":\"323\",\"customer\":\"Amos Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6900.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\":\"f581f97bff12d05023bdf495aac306a8719d97f2e597b873200eb6a83640c639\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"674\",\"sale_id\":\"359\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"675\",\"sale_id\":\"359\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2059, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"357\",\"date\":\"2022-10-15 10:15:00\",\"reference_no\":\"1634\",\"customer_id\":\"318\",\"customer\":\"Geoffrey\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"238c6e820eec8eded4911701402aa7a6888f6015cc05135ea2a9ed3a2917c1be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"672\",\"sale_id\":\"357\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2060, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"370\",\"date\":\"2022-10-15 09:40:00\",\"reference_no\":\"1638\",\"customer_id\":\"333\",\"customer\":\"David Nguru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"23079fede9dc357d8068a2c1904b16d0c04b4485deda510a4513ca02b1e33887\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"696\",\"sale_id\":\"370\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2061, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"355\",\"date\":\"2022-10-14 15:40:00\",\"reference_no\":\"SALE0095\",\"customer_id\":\"146\",\"customer\":\"Pastor\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"4700.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\":\"e5dce5d36cdd2f2fca03587249a1b127786ef81041576329292fc4a5ea201c1b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"665\",\"sale_id\":\"355\",\"product_id\":\"993\",\"product_code\":\"34248336\",\"product_name\":\"gallant\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2062, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"354\",\"date\":\"2022-10-14 15:30:00\",\"reference_no\":\"1630\",\"customer_id\":\"316\",\"customer\":\"John Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-17 09:41:22\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1160.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\":\"853c1fedb0f84633764ced8ff07194f870f23cf3abb8bb47cc06854edaedbd86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"664\",\"sale_id\":\"354\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2063, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"358\",\"date\":\"2022-10-14 15:20:00\",\"reference_no\":\"1633\",\"customer_id\":\"319\",\"customer\":\"Stephen Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"342129499c12496c414edb0624f37b2f4a0c823f06ded871065cd439eeb6c0fe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"673\",\"sale_id\":\"358\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2064, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"356\",\"date\":\"2022-10-14 15:10:00\",\"reference_no\":\"1632\",\"customer_id\":\"141\",\"customer\":\"Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40005.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"40005.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"64\",\"pos\":\"0\",\"paid\":\"43690.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\":\"9bcb3bc0d7eba410f64d56e42edd3bbe25440c27e7d6642f0e1f2bfd6a34014e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"669\",\"sale_id\":\"356\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11970.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"670\",\"sale_id\":\"356\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"671\",\"sale_id\":\"356\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2065, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"353\",\"date\":\"2022-10-14 14:26:00\",\"reference_no\":\"1628\",\"customer_id\":\"313\",\"customer\":\"Otoigo Koroso\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24840.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24840.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"8000.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\":\"3040558acb11b3604a66a0bee8654fa3d235f962998315a978a4f0638928637a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"662\",\"sale_id\":\"353\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24840.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"23.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2066, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"352\",\"date\":\"2022-10-14 14:23:00\",\"reference_no\":\"1627\",\"customer_id\":\"311\",\"customer\":\"Wacira Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3500.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\":\"2018614242c732a033145255d7ffda08025e90f336210e61599c330ffb523a09\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"660\",\"sale_id\":\"352\",\"product_id\":\"1053\",\"product_code\":\"47042245\",\"product_name\":\"malkia sukuma\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"661\",\"sale_id\":\"352\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2067, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"350\",\"date\":\"2022-10-14 10:05:00\",\"reference_no\":\"1626\",\"customer_id\":\"310\",\"customer\":\"James Kibebe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"923273d7d71a9afbf04da601fb8ed82c52eab216522d0d8fe23977e316cf6200\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"647\",\"sale_id\":\"350\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2068, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"349\",\"date\":\"2022-10-14 09:55:00\",\"reference_no\":\"1625\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"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\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-14 10:47:05\",\"total_items\":\"28\",\"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\":\"dcccb7bbfc2352784983dc86d4cc017fa95afc7ce4c84f8093493b67205b3bcc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"648\",\"sale_id\":\"349\",\"product_id\":\"1033\",\"product_code\":\"72586338\",\"product_name\":\"nova pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.5000\",\"unit_price\":\"3.5000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"98.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2069, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"348\",\"date\":\"2022-10-13 09:55:00\",\"reference_no\":\"1624\",\"customer_id\":\"303\",\"customer\":\"Peter Njuguna\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"61fe4b6e20282eee7041bc19bf5c86e6be1e6f942bba398d9736044d25b1e026\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"644\",\"sale_id\":\"348\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2070, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"347\",\"date\":\"2022-10-13 09:55:00\",\"reference_no\":\"1623\",\"customer_id\":\"269\",\"customer\":\"Josphat Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3750.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\":\"902d5d177bab114052db4d46eb5e3847bad5dd2ae21d6407ff05fbaf9fbba5e3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"643\",\"sale_id\":\"347\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2071, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"346\",\"date\":\"2022-10-13 09:50:00\",\"reference_no\":\"1622\",\"customer_id\":\"309\",\"customer\":\"Peter Kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3000.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\":\"39be87d2869b28faff66801e13e9c4a111d63f9a867252f21f973c59bb01c6ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"642\",\"sale_id\":\"346\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2072, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"345\",\"date\":\"2022-10-13 09:45:00\",\"reference_no\":\"1621\",\"customer_id\":\"122\",\"customer\":\"Benard Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"8250.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\":\"80a6f2af9c97b28c02e9bc8ae5672c7c2be91da28d8f0b136a2c9c950ccc446f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"640\",\"sale_id\":\"345\",\"product_id\":\"968\",\"product_code\":\"81641084\",\"product_name\":\"capsicum Maxibell f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"641\",\"sale_id\":\"345\",\"product_id\":\"1008\",\"product_code\":\"90431435\",\"product_name\":\"fabiola\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2073, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"344\",\"date\":\"2022-10-13 09:45:00\",\"reference_no\":\"1620\",\"customer_id\":\"308\",\"customer\":\"Charles Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"4c179b4fd1697e24f832a3f85b6db32cc9a0b9efd83edb5dd3e8ff8af14f02a6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"639\",\"sale_id\":\"344\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2074, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"343\",\"date\":\"2022-10-13 09:40:00\",\"reference_no\":\"1619\",\"customer_id\":\"221\",\"customer\":\"Samuel Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"798aa3240896e2072c7c5b341a43a63b19564e708cd5a7979d471196411d241a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"638\",\"sale_id\":\"343\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2075, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"209\",\"date\":\"2022-10-12 14:15:00\",\"reference_no\":\"1616\",\"customer_id\":\"160\",\"customer\":\"patrick muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-14 09:24:20\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3450.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\":\"446658671a4ba7aa2d8336e78b105016f3b02698d25d633519a866255e3505a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"625\",\"sale_id\":\"209\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2076, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"351\",\"date\":\"2022-10-12 14:00:00\",\"reference_no\":\"1614\",\"customer_id\":\"312\",\"customer\":\"Faith Kagecha\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2160.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\":\"7ec703373d861985777d75d2b305c4dfb216673b53e30523194b7349108b35f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"659\",\"sale_id\":\"351\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2077, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"337\",\"date\":\"2022-10-12 09:25:00\",\"reference_no\":\"1618\",\"customer_id\":\"307\",\"customer\":\"Kelvin Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-14 13:57:52\",\"total_items\":\"400\",\"pos\":\"0\",\"paid\":\"1000.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\":\"988d647b26a75522e82bebe4254e41316eb6efd26ca0ae329893ee5d444aeb5a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"654\",\"sale_id\":\"337\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"655\",\"sale_id\":\"337\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"133.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"199.5000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"133.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"656\",\"sale_id\":\"337\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"657\",\"sale_id\":\"337\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"658\",\"sale_id\":\"337\",\"product_id\":\"1042\",\"product_code\":\"58478476\",\"product_name\":\"c. wonder pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"67.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"201.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2078, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"336\",\"date\":\"2022-10-12 09:25:00\",\"reference_no\":\"1617\",\"customer_id\":\"241\",\"customer\":\"Gabriel Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2970.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2970.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-21 16:30:25\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1270.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\":\"0184e4c164fabf693f813ccba9213b39d6a7e109b5d0f04298dfcd415d18ae59\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"754\",\"sale_id\":\"336\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"755\",\"sale_id\":\"336\",\"product_id\":\"1028\",\"product_code\":\"88247587\",\"product_name\":\"butternut\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2079, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"335\",\"date\":\"2022-10-12 09:20:00\",\"reference_no\":\"1615\",\"customer_id\":\"306\",\"customer\":\"Peter Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"4e22a57d69391741839b985a47a62043653c13f8d7a2ab3b840ebef6619faca4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"623\",\"sale_id\":\"335\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2080, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"334\",\"date\":\"2022-10-12 09:15:00\",\"reference_no\":\"1613\",\"customer_id\":\"183\",\"customer\":\"Eliud Miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"282a7290c45ee2b32e0bf1ddfaa5e5098fd8b96c28c8e87b6615adf6484edd95\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"622\",\"sale_id\":\"334\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2081, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"333\",\"date\":\"2022-10-12 09:05:00\",\"reference_no\":\"1612\",\"customer_id\":\"305\",\"customer\":\"Anne Nyaguthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4320.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\":\"99678452ebd4be28872fc4795dcbd4054e24cea5a9885cacca16bf61c5d4d351\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"621\",\"sale_id\":\"333\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2082, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"308\",\"date\":\"2022-10-11 16:55:00\",\"reference_no\":\"1896\",\"customer_id\":\"156\",\"customer\":\"peter mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6615.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6615.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6600.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\":\"bd12c128864d190611cb0eaa95b79ec9a0d0cf186bd222ebb4ca0d99764df9e8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"584\",\"sale_id\":\"308\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"585\",\"sale_id\":\"308\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2083, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"297\",\"date\":\"2022-10-11 15:53:00\",\"reference_no\":\"18..\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:36:02\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5600.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\":\"31f3d05bf24214f259f1bcfb90e5bafda69cf6bf92a3fdd52d6cf65f499c283d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"575\",\"sale_id\":\"297\",\"product_id\":\"964\",\"product_code\":\"44150313\",\"product_name\":\"Tomato Bwts F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"576\",\"sale_id\":\"297\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2084, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"331\",\"date\":\"2022-10-11 15:50:00\",\"reference_no\":\"1609\",\"customer_id\":\"304\",\"customer\":\"Daniel Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2060.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2060.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2050.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\":\"78b7f8e753c8ef572c520c7ab14218783aa8a817b245df878a48bff449a97a39\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"613\",\"sale_id\":\"331\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"614\",\"sale_id\":\"331\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2085, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"311\",\"date\":\"2022-10-11 15:40:00\",\"reference_no\":\"1899\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-12 15:43:24\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"1000.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\":\"dd644fb5e332efb838f6fcd2913b9c3653f1f4f2b3f1f475aeaf80ecc5251278\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"589\",\"sale_id\":\"311\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2086, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"329\",\"date\":\"2022-10-11 15:40:00\",\"reference_no\":\"1606\",\"customer_id\":\"302\",\"customer\":\"Paul  Kirusa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1080.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\":\"0576d536bd4a947d9c4e81387af51cb3d5d785a067487e0133de75ec1993ee05\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"611\",\"sale_id\":\"329\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2087, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"328\",\"date\":\"2022-10-11 15:40:00\",\"reference_no\":\"1605\",\"customer_id\":\"301\",\"customer\":\"Polycarp Githaiga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"e18cf0ffb26e9cf727ece179175f304d980404ee7e1f0eabb2ac20111e52730b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"610\",\"sale_id\":\"328\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2088, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"295\",\"date\":\"2022-10-11 15:36:00\",\"reference_no\":\"18..\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2800.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\":\"5177e7eb7e08481a8e51be884eb0be157640017db7132f9531bb292dd3d7697d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"541\",\"sale_id\":\"295\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"542\",\"sale_id\":\"295\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"543\",\"sale_id\":\"295\",\"product_id\":\"1053\",\"product_code\":\"47042245\",\"product_name\":\"malkia sukuma\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2089, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"327\",\"date\":\"2022-10-11 15:30:00\",\"reference_no\":\"1604\",\"customer_id\":\"300\",\"customer\":\"cecelia Wangeci\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"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\":\"e6c24a9afcf7e98c2b64c731a219a4aca747be1153f63d13305df26690cd8a3c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"608\",\"sale_id\":\"327\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"609\",\"sale_id\":\"327\",\"product_id\":\"1039\",\"product_code\":\"76678450\",\"product_name\":\"malkia skuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2090, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"326\",\"date\":\"2022-10-11 15:30:00\",\"reference_no\":\"1603\",\"customer_id\":\"299\",\"customer\":\"Mercy Waithira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3240.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3240.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3240.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\":\"81a90499071a51927590da00e5b97ce12698178c2328e26f59b9bfa5dc1b0417\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"607\",\"sale_id\":\"326\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3240.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2091, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"325\",\"date\":\"2022-10-11 15:25:00\",\"reference_no\":\"1602\",\"customer_id\":\"298\",\"customer\":\"David gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"235\",\"pos\":\"0\",\"paid\":\"4700.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\":\"370c760e0c03edc80123faa1da5cfb86e6c609cd25f54cefd86fd7428f56860e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"606\",\"sale_id\":\"325\",\"product_id\":\"966\",\"product_code\":\"59785009\",\"product_name\":\"Pawpaw malkia F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"235.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"235.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2092, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"324\",\"date\":\"2022-10-11 15:20:00\",\"reference_no\":\"1601\",\"customer_id\":\"293\",\"customer\":\"Eliud  Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"pos\":\"0\",\"paid\":\"15700.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\":\"1cfafd1616f0219192122cbb6ac7af951faa59459135afc995d03bc602e91868\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"605\",\"sale_id\":\"324\",\"product_id\":\"1013\",\"product_code\":\"08687867\",\"product_name\":\"nouvelle f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2093, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"323\",\"date\":\"2022-10-11 09:30:00\",\"reference_no\":\"100\",\"customer_id\":\"297\",\"customer\":\"Moses Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"999.9950\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"134\",\"pos\":\"0\",\"paid\":\"1000.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\":\"4230952b11e903f704f1e635393365aa22a4bac31cba50f29396168d91945749\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"603\",\"sale_id\":\"323\",\"product_id\":\"1037\",\"product_code\":\"27810521\",\"product_name\":\"sukuma pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.5000\",\"unit_price\":\"1.5000\",\"quantity\":\"133.3300\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.5000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"133.3300\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"604\",\"sale_id\":\"323\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2094, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"322\",\"date\":\"2022-10-11 09:20:00\",\"reference_no\":\"99\",\"customer_id\":\"281\",\"customer\":\"James Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6690.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6690.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"6600.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\":\"3d0464defdbf0e48e988014332412c204b58791ff9fa4fa199474f0095464931\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"600\",\"sale_id\":\"322\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"601\",\"sale_id\":\"322\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1890.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2095, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"321\",\"date\":\"2022-10-11 09:15:00\",\"reference_no\":\"98\",\"customer_id\":\"136\",\"customer\":\"Simon\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-13 09:26:00\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"9000.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\":\"ecafc97ed3657789f9a42d1a91a8b85e05cfeae98b99c6bf2c87b54248a6a1b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"602\",\"sale_id\":\"321\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2096, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"332\",\"date\":\"2022-10-11 09:00:00\",\"reference_no\":\"1610\",\"customer_id\":\"254\",\"customer\":\"Jackson mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"12000.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\":\"dc5ed78df655fff1e017565834b0e7f39474b3e7a23704cb641d95b1ae45cb0b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"618\",\"sale_id\":\"332\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"619\",\"sale_id\":\"332\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"620\",\"sale_id\":\"332\",\"product_id\":\"1049\",\"product_code\":\"44344626\",\"product_name\":\"zawadi f1seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2097, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"307\",\"date\":\"2022-10-10 16:35:00\",\"reference_no\":\"1897\",\"customer_id\":\"154\",\"customer\":\"John Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3465.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\":\"57b146a5fd6c710002524e7c391a1bc4bab9f72deb24d1b2b9b2cf48c604cd11\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"577\",\"sale_id\":\"307\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2098, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"306\",\"date\":\"2022-10-10 16:30:00\",\"reference_no\":\"1895\",\"customer_id\":\"291\",\"customer\":\"Obadiah Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"7ff6b5210fd5b98fdf1b3e75af18ad655bc115f2595415bdc070ac33d98355fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"569\",\"sale_id\":\"306\",\"product_id\":\"1054\",\"product_code\":\"28166248\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2099, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"305\",\"date\":\"2022-10-10 16:25:00\",\"reference_no\":\"1894\",\"customer_id\":\"290\",\"customer\":\"Fredrick Macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:34:22\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"3400.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\":\"e585adaa6f37f530ba55075c1a4515061e34177e4061c9fd659bd5fc7f687d31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"570\",\"sale_id\":\"305\",\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2100, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"304\",\"date\":\"2022-10-10 16:20:00\",\"reference_no\":\"1893\",\"customer_id\":\"284\",\"customer\":\"Raphael Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1080.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1080.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:34:41\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1050.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\":\"b8120e02053bff1f0274db07a698d7bfdf694fef5419b24c957b1cb9aab763d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"571\",\"sale_id\":\"304\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1080.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2101, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"303\",\"date\":\"2022-10-10 16:20:00\",\"reference_no\":\"1892\",\"customer_id\":\"289\",\"customer\":\"Harrison Muturi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:35:00\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5400.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\":\"4181ff3c69c4764593ae068e47433c1869d8a51307d825509b208a055f37d118\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"572\",\"sale_id\":\"303\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2102, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"302\",\"date\":\"2022-10-10 16:10:00\",\"reference_no\":\"1891\",\"customer_id\":\"276\",\"customer\":\"Simon muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"20000.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\":\"aff11fa1f0690859825d2b9e0bd4fccbb94f1fa3ed613bce21b155516d7252e8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"563\",\"sale_id\":\"302\",\"product_id\":\"4294967295\",\"product_code\":\"Ansal\",\"product_name\":\"ansal 25g seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"17700.0000\",\"unit_price\":\"17700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"17700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"564\",\"sale_id\":\"302\",\"product_id\":\"4294967295\",\"product_code\":\"Gloria\",\"product_name\":\"Gloria seeds 25g\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2103, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"301\",\"date\":\"2022-10-10 16:05:00\",\"reference_no\":\"1890\",\"customer_id\":\"138\",\"customer\":\"Eliud Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19215.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19215.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:35:47\",\"total_items\":\"31\",\"pos\":\"0\",\"paid\":\"20215.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\":\"a8d22d212d99ec798c29937563f4eb3538152e046776ec6aa96cd63b865d6f48\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"573\",\"sale_id\":\"301\",\"product_id\":\"1010\",\"product_code\":\"09734300\",\"product_name\":\"frenze\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"574\",\"sale_id\":\"301\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2104, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"300\",\"date\":\"2022-10-10 16:05:00\",\"reference_no\":\"1889\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4700.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\":\"6d94d59d7e7b646592f06fa30bea28af0b2f982df598441ca70260e0f28ef8ee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"554\",\"sale_id\":\"300\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2105, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"223\",\"date\":\"2022-10-10 14:40:00\",\"reference_no\":\"1898\",\"customer_id\":\"148\",\"customer\":\"Nancy Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:49:55\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4000.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\":\"89865ac367885a3454f10f54eec92d34bd25af04a58bb98b7d9138e05869373a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"579\",\"sale_id\":\"223\",\"product_id\":\"1011\",\"product_code\":\"86696082\",\"product_name\":\"riograde\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2106, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"299\",\"date\":\"2022-10-09 16:00:00\",\"reference_no\":\"1888\",\"customer_id\":\"133\",\"customer\":\"Patrick Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9720.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9720.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:07:01\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"9720.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\":\"9c3e0bb85cd0ea7ad14cb0592b3a10890c68a9f3916eaad7c6c8cd9114398785\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"556\",\"sale_id\":\"299\",\"product_id\":\"1056\",\"product_code\":\"12734436\",\"product_name\":\"c.wonder f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9720.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2107, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"298\",\"date\":\"2022-10-08 15:55:00\",\"reference_no\":\"SALE0093\",\"customer_id\":\"139\",\"customer\":\"Dennis Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 16:06:32\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"8500.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\":\"701012b2c3d55ab4fd633b09de94a8ebc20a312eb75550319826bf13d1471b93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"555\",\"sale_id\":\"298\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"17.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2108, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"294\",\"date\":\"2022-10-08 11:35:00\",\"reference_no\":\"1885\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-11 15:27:03\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"7500.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\":\"f45f0e685388af560ba6f73bec084207a19b1eaa05045dcd5f204f3593318278\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"540\",\"sale_id\":\"294\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2109, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"293\",\"date\":\"2022-10-08 11:13:00\",\"reference_no\":\"1881\",\"customer_id\":\"143\",\"customer\":\"Josphat Njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5040.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\":\"adde7c40c107220fda0d32d88ece01e4f99800ee42c0d264989962bc92a76448\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"538\",\"sale_id\":\"293\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5040.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2110, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"292\",\"date\":\"2022-10-08 10:22:00\",\"reference_no\":\"1869\",\"customer_id\":\"260\",\"customer\":\"Belton Nderi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-08 10:25:09\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"3d784713fad389b4300470032d766e1a903a105f2a40abcc29382cc771a4ef78\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"536\",\"sale_id\":\"292\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2111, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"291\",\"date\":\"2022-10-08 10:16:00\",\"reference_no\":\"1877\",\"customer_id\":\"144\",\"customer\":\"Stephen Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6615.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6615.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-08 10:31:43\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6600.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\":\"493c2d2d690747c41746aec3cce0b777c494097b25085243d09ea295707b3d60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"537\",\"sale_id\":\"291\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2112, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"290\",\"date\":\"2022-10-08 10:09:00\",\"reference_no\":\"1879\",\"customer_id\":\"154\",\"customer\":\"John Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8505.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8505.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"8505.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\":\"460c246e2dbd84e71276115d5de174b23202cddbc320f4f03c5d891827e3b4f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"532\",\"sale_id\":\"290\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"533\",\"sale_id\":\"290\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2113, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"289\",\"date\":\"2022-10-08 10:04:00\",\"reference_no\":\"1880\",\"customer_id\":\"168\",\"customer\":\"peterson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-08 10:07:43\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d03fb75d401f60c1b00f9896f9d34b8fa2ce027e39f1e3284bdb4681962e033a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"530\",\"sale_id\":\"289\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"531\",\"sale_id\":\"289\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2114, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"283\",\"date\":\"2022-10-07 12:35:00\",\"reference_no\":\"1870\",\"customer_id\":\"147\",\"customer\":\"Simon Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4320.4000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4320.4000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"56f5f009a37ae9ac258f0d6336ba9afba5679c75e80413b60e2425fd3292712f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"518\",\"sale_id\":\"283\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"519\",\"sale_id\":\"283\",\"product_id\":\"4294967295\",\"product_code\":\"nova\",\"product_name\":\"nova seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"386.0000\",\"unit_price\":\"386.0000\",\"quantity\":\"1.4000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"540.4000\",\"serial_no\":\"\",\"real_unit_price\":\"386.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.4000\",\"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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2115, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"281\",\"date\":\"2022-10-07 12:17:00\",\"reference_no\":\"1869\",\"customer_id\":\"260\",\"customer\":\"Belton Nderi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"aed9f77555f97d0729b5654ec3be16e66897c8325c0b4db0f314c9775e18f256\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"516\",\"sale_id\":\"281\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2116, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"280\",\"date\":\"2022-10-07 12:10:00\",\"reference_no\":\"1867\",\"customer_id\":\"259\",\"customer\":\"Eliud Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"450\",\"pos\":\"0\",\"paid\":\"1550.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\":\"3ef08db34af1021ad8d70e41f6bd9c2b5f1c8e9c795318d55cd95b50e6883ce7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"515\",\"sale_id\":\"280\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"450.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"450.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2117, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"279\",\"date\":\"2022-10-07 12:07:00\",\"reference_no\":\"1866\",\"customer_id\":\"258\",\"customer\":\"George kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"150.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\":\"1298a360138cd6dae68fb57dfb4ed553de0d921a4a70d6912adfa0060948bbb1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"514\",\"sale_id\":\"279\",\"product_id\":\"1051\",\"product_code\":\"31995539\",\"product_name\":\"s.bell pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3.0000\",\"unit_price\":\"3.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2118, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"288\",\"date\":\"2022-10-07 09:50:00\",\"reference_no\":\"1876\",\"customer_id\":\"204\",\"customer\":\"Benjamin haraka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"bf982630067c5f2676659a1ca7a39182bbefc6e9e5d3f993312ab2b1ee852474\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"527\",\"sale_id\":\"288\",\"product_id\":\"1052\",\"product_code\":\"89880185\",\"product_name\":\"Star9065 pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2119, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"287\",\"date\":\"2022-10-07 09:45:00\",\"reference_no\":\"1873\",\"customer_id\":\"275\",\"customer\":\"Peter Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"16\",\"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\":\"e34ca89600dfc9643d49274bcae391a5af6fb3d36d5345e6bedf97b5b5d3c124\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"526\",\"sale_id\":\"287\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17280.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2120, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"286\",\"date\":\"2022-10-07 09:40:00\",\"reference_no\":\"1875\",\"customer_id\":\"274\",\"customer\":\"Brian Karina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"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\":\"038b00c30d29ce94d2b9dfcd6d669d26faf7da72f18fbcc22605d38c2bd960cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"525\",\"sale_id\":\"286\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2121, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"285\",\"date\":\"2022-10-07 09:35:00\",\"reference_no\":\"1874\",\"customer_id\":\"273\",\"customer\":\"prisicila Ngina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"120.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"120.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"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\":\"2063b00e778c37eeeb7f909310515ab3f6d6b03fa48a3acf8d855f08681d49d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"523\",\"sale_id\":\"285\",\"product_id\":\"1040\",\"product_code\":\"31497259\",\"product_name\":\"spinach pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"524\",\"sale_id\":\"285\",\"product_id\":\"1035\",\"product_code\":\"54469466\",\"product_name\":\"queen pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2122, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"284\",\"date\":\"2022-10-07 09:30:00\",\"reference_no\":\"1872\",\"customer_id\":\"151\",\"customer\":\"Maureen\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14805.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14805.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-08 09:35:35\",\"total_items\":\"24\",\"pos\":\"0\",\"paid\":\"15500.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\":\"7f88133b3b04a06a0e47bca4ae22675bbf646437ea30b560b87039c6880ab82d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"522\",\"sale_id\":\"284\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14805.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2123, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"265\",\"date\":\"2022-10-05 16:32:00\",\"reference_no\":\"1847\",\"customer_id\":\"256\",\"customer\":\"Samuel Gatebu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-06 18:05:31\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"9370.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\":\"47ec625c2691e328aa4ad2bd40379f8171ae278c9a16495388c31d814c9fe791\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"512\",\"sale_id\":\"265\",\"product_id\":\"1045\",\"product_code\":\"50597015\",\"product_name\":\"Nova f1 seeedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2124, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"264\",\"date\":\"2022-10-05 14:24:00\",\"reference_no\":\"SALE262875514248\",\"customer_id\":\"234\",\"customer\":\"Nahashon kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"40\",\"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\":\"61002ada184531d3d3e61aed005283b5cf11cdc2c320d0c32611bdb50a49f35c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"474\",\"sale_id\":\"264\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2125, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"263\",\"date\":\"2022-10-05 10:27:00\",\"reference_no\":\"SALE597625041103\",\"customer_id\":\"200\",\"customer\":\"Mutinda robert\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"58860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"58860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-26 16:19:59\",\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"20000.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\":\"0a1da15717e5979c4da7e1fccd3286bebef87449006b4dc8f08f29a2dfc743b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"799\",\"sale_id\":\"263\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17640.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"28.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"800\",\"sale_id\":\"263\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"801\",\"sale_id\":\"263\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"802\",\"sale_id\":\"263\",\"product_id\":\"4294967295\",\"product_code\":\"2022\",\"product_name\":\"ansal seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"17700.0000\",\"unit_price\":\"17700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"17700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"803\",\"sale_id\":\"263\",\"product_id\":\"4294967295\",\"product_code\":\"20221\",\"product_name\":\"bwts seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"3900.0000\",\"unit_price\":\"3900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3900.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"804\",\"sale_id\":\"263\",\"product_id\":\"4294967295\",\"product_code\":\"20222\",\"product_name\":\"705 seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2126, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"268\",\"date\":\"2022-10-03 16:46:00\",\"reference_no\":\"SALE930507824581\",\"customer_id\":\"252\",\"customer\":\"Reuben Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"e8109935460545cb5256c2c52b4c3e01ea537c8a97daecb9b14592aa16c00309\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"488\",\"sale_id\":\"268\",\"product_id\":\"1045\",\"product_code\":\"50597015\",\"product_name\":\"Nova f1 seeedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2127, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"267\",\"date\":\"2022-10-03 08:40:00\",\"reference_no\":\"1837\",\"customer_id\":\"253\",\"customer\":\"Janifer Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3120.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3120.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-06 17:59:56\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3120.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\":\"2fc0b252fb389ac908f83cdb694e2d7755fc003594f5620c57150e1ddf97c8e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"507\",\"sale_id\":\"267\",\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"s.bell seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1080.0000\",\"unit_price\":\"1080.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1620.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1080.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"508\",\"sale_id\":\"267\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2128, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"262\",\"date\":\"2022-10-01 16:05:00\",\"reference_no\":\"SALE795979499520\",\"customer_id\":\"210\",\"customer\":\"Ibra\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22050.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22050.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"7000.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\":\"55ee418dd0cf5c4860873c3638128f5d3d4dc94386460b44f290ded787dce4a0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"458\",\"sale_id\":\"262\",\"product_id\":\"977\",\"product_code\":\"76135521\",\"product_name\":\"bwt f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2129, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"269\",\"date\":\"2022-09-30 16:47:00\",\"reference_no\":\"SALE114735608575\",\"customer_id\":\"250\",\"customer\":\"Tarrus Ngugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7500\",\"pos\":\"0\",\"paid\":\"15000.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\":\"29f3747ff31511a4ecf70fa9aac09f494a58c4112bcea72a4406cb97b1e5a520\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"489\",\"sale_id\":\"269\",\"product_id\":\"1034\",\"product_code\":\"58424259\",\"product_name\":\"victoria pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2.0000\",\"unit_price\":\"2.0000\",\"quantity\":\"7500.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"7500.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\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2130, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"256\",\"date\":\"2022-09-30 15:55:00\",\"reference_no\":\"SALE426249521642\",\"customer_id\":\"206\",\"customer\":\"Wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"72135.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"72135.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"115\",\"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\":\"27a719f29c8c9cf2646f0a0fccd1d8b318f976de00de1eda799c9653033102bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"447\",\"sale_id\":\"256\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"110.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"69300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"110.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"448\",\"sale_id\":\"256\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2131, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"257\",\"date\":\"2022-09-30 15:55:00\",\"reference_no\":\"SALE309151974090\",\"customer_id\":\"207\",\"customer\":\"Patrick munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14490.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"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\":\"8d34bd15b362df23071922fb5965122658eeab1ac7f7aa3b1c7437a95cdad82c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"449\",\"sale_id\":\"257\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"450\",\"sale_id\":\"257\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"451\",\"sale_id\":\"257\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2132, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"270\",\"date\":\"2022-09-29 16:50:00\",\"reference_no\":\"SALE059635092455\",\"customer_id\":\"249\",\"customer\":\"John Mbaria\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"cf1a546bd3e79175075bc23d0a41a829c634c8b18d8e24907067283895ca39ee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"490\",\"sale_id\":\"270\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2133, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"255\",\"date\":\"2022-09-29 13:50:00\",\"reference_no\":\"SALE691504244518\",\"customer_id\":\"205\",\"customer\":\"Msome\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"76860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"122\",\"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\":\"649879b83efd54f23eb471e7caf69c544e5ea59ba6f3728b4332e71127b4dd88\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"444\",\"sale_id\":\"255\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"113.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"71190.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"113.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"445\",\"sale_id\":\"255\",\"product_id\":\"981\",\"product_code\":\"84731561\",\"product_name\":\"svte 6653\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"446\",\"sale_id\":\"255\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2134, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"180\",\"date\":\"2022-09-29 12:10:00\",\"reference_no\":\"SALE2022\\/09\\/0067\",\"customer_id\":\"201\",\"customer\":\"Willy\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"4500.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\":\"119b6d67f2028d6477466189285b95f38acb8c6abf99ccecb7850059bcd88d3c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"344\",\"sale_id\":\"180\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2135, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"179\",\"date\":\"2022-09-29 12:10:00\",\"reference_no\":\"SALE2022\\/09\\/0066\",\"customer_id\":\"202\",\"customer\":\"Cyrus Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-09-30 15:02:12\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4500.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\":\"4b56fa0dffab57ba487ae64a70caa8bad5f6014ad6f6b5aea9239b7ddc337a15\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"360\",\"sale_id\":\"179\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2136, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"178\",\"date\":\"2022-09-29 12:05:00\",\"reference_no\":\"SALE2022\\/09\\/0065\",\"customer_id\":\"203\",\"customer\":\"Samson waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"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\":\"efe270ddd18e966f31149346ae463271468cd598b0bfae44c306fe8d36f305a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"341\",\"sale_id\":\"178\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"342\",\"sale_id\":\"178\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2137, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"177\",\"date\":\"2022-09-29 12:00:00\",\"reference_no\":\"SALE2022\\/09\\/0064\",\"customer_id\":\"204\",\"customer\":\"Benjamin haraka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2800.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\":\"dfa81906d35353f87791f63cd6bb437b5a27a0306cf7741d354aa722038eecfa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"340\",\"sale_id\":\"177\",\"product_id\":\"980\",\"product_code\":\"89637785\",\"product_name\":\"star9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2138, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"271\",\"date\":\"2022-09-28 16:40:00\",\"reference_no\":\"SALE590779726971\",\"customer_id\":\"248\",\"customer\":\"Douglas Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-17 10:12:40\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"12700.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\":\"32794119c504f889c54706839676477474911b3000989b15aa0cefed2961a662\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1560\",\"sale_id\":\"271\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1561\",\"sale_id\":\"271\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1562\",\"sale_id\":\"271\",\"product_id\":\"4294967295\",\"product_code\":\"tomato  \",\"product_name\":\"bwts seeds\",\"product_type\":\"manual\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"6\",\"product_unit_code\":\"g\",\"unit_quantity\":\"1.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2139, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"261\",\"date\":\"2022-09-28 16:05:00\",\"reference_no\":\"SALE730594521331\",\"customer_id\":\"209\",\"customer\":\"George kibicho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"3090.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\":\"ce064c9bdb175274ab9346e37e736a6c8d088f4d7d4d0c414f1b079892101386\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"457\",\"sale_id\":\"261\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2140, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"259\",\"date\":\"2022-09-28 16:00:00\",\"reference_no\":\"SALE042042990408\",\"customer_id\":\"203\",\"customer\":\"Samson waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"24063cff259e9ea96402d167319308be348a95a50a109153e522c1c86b7a078e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"455\",\"sale_id\":\"259\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2141, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"656\",\"date\":\"2022-09-28 10:55:00\",\"reference_no\":\"SALE0104\",\"customer_id\":\"127\",\"customer\":\"Fredrick Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3740.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3740.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-12-10 12:40:44\",\"total_items\":\"187\",\"pos\":\"0\",\"paid\":\"3750.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\":\"dc45a0f8f8bd4b7068caa9a7be14332c5e1288d26e7d93ff786592553bb232b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1460\",\"sale_id\":\"656\",\"product_id\":\"1006\",\"product_code\":\"76105265\",\"product_name\":\"redswit\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"187.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3740.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"187.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2142, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"275\",\"date\":\"2022-09-27 17:20:00\",\"reference_no\":\"SALE378851463326\",\"customer_id\":\"242\",\"customer\":\"Alfred muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"3400.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\":\"dd35c7fbae8472a7e41e64e46c9d59546f1eca94321b130e6ee27e42dafc5a42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"497\",\"sale_id\":\"275\",\"product_id\":\"1048\",\"product_code\":\"32895276\",\"product_name\":\"kiboko f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2143, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"182\",\"date\":\"2022-09-27 12:20:00\",\"reference_no\":\"SALE2022\\/09\\/0069\",\"customer_id\":\"199\",\"customer\":\"Moses  ndegwa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"3436fdf544ff2413874b1ed005fb9808d91849e9252bfa401f767477b93d8ebb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"347\",\"sale_id\":\"182\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2144, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"181\",\"date\":\"2022-09-27 12:15:00\",\"reference_no\":\"SALE2022\\/09\\/0068\",\"customer_id\":\"219\",\"customer\":\"Justus Kimandu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14490.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"14440.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\":\"cf67c53d08b39cd3f345d2a98fae5c538be31c9c08fec374976f9c1596c89ba3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"345\",\"sale_id\":\"181\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"17.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"346\",\"sale_id\":\"181\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2145, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"580\",\"date\":\"2022-09-27 10:25:00\",\"reference_no\":\"91\",\"customer_id\":\"488\",\"customer\":\"Bernard Muraguri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3780.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\":\"2faf8cafbe49b3d99917a8b3a07a80e6151a0d2ff3a16aeefdfdf08c1fb4dc93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1081\",\"sale_id\":\"580\",\"product_id\":\"984\",\"product_code\":\"61285006\",\"product_name\":\"tm f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2146, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"277\",\"date\":\"2022-09-26 17:26:00\",\"reference_no\":\"SALE252302971085\",\"customer_id\":\"244\",\"customer\":\"Florence\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"100\",\"pos\":\"0\",\"paid\":\"15000.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\":\"db08ab1b8c64c2aecd25b39b3b65ac516183e27072651691e3c80bb073db0e7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"499\",\"sale_id\":\"277\",\"product_id\":\"1044\",\"product_code\":\"51726696\",\"product_name\":\"malkia pawpaw pcs \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2147, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"395\",\"date\":\"2022-09-26 14:40:00\",\"reference_no\":\"1682\",\"customer_id\":\"211\",\"customer\":\"edward kibicho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1575.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1575.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1650.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\":\"6f170a21a693578294aa86e4be12b8ca008cc434c56b4807043305a6090b625a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"743\",\"sale_id\":\"395\",\"product_id\":\"1062\",\"product_code\":\"82384830\",\"product_name\":\"mydas f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2148, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"184\",\"date\":\"2022-09-26 12:25:00\",\"reference_no\":\"SALE2022\\/09\\/0071\",\"customer_id\":\"197\",\"customer\":\"Geoffrey munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"32\",\"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\":\"6fc2d08bda847646a73279d427b991d19a2d8bedf32a16e9879ec29b5664d1ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"349\",\"sale_id\":\"184\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"350\",\"sale_id\":\"184\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2149, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"183\",\"date\":\"2022-09-26 12:20:00\",\"reference_no\":\"SALE2022\\/09\\/0070\",\"customer_id\":\"198\",\"customer\":\"Samuel Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16320.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16320.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"26\",\"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\":\"a6c84fa16851cb60824e61cd62ae0021298bae17cce346bd7a58b60d4a4dadf0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"348\",\"sale_id\":\"183\",\"product_id\":\"993\",\"product_code\":\"34248336\",\"product_name\":\"gallant\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"25.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16320.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2150, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"188\",\"date\":\"2022-09-24 14:25:00\",\"reference_no\":\"SALE2022\\/09\\/0075\",\"customer_id\":\"193\",\"customer\":\"Agnes\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2200.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\":\"17dbc6edda0ecc06b775639b7ab7e293314962622a3c0401feb182330164cb43\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"356\",\"sale_id\":\"188\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2151, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"186\",\"date\":\"2022-09-23 14:25:00\",\"reference_no\":\"SALE2022\\/09\\/0073\",\"customer_id\":\"195\",\"customer\":\"Kanguku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"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\":\"95f9ddfa5cbefc1d8a29e404fb55a352d138cd63f7ebcc7c7b0c174c9589008f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"354\",\"sale_id\":\"186\",\"product_id\":\"991\",\"product_code\":\"06659209\",\"product_name\":\"f2\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2152, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"191\",\"date\":\"2022-09-22 14:55:00\",\"reference_no\":\"SALE2022\\/09\\/0078\",\"customer_id\":\"190\",\"customer\":\"Charles Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"7530.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\":\"cbfb896002968d599c09c3a22fdaa855e30feebf5bb3981a3d08ecf3be55bebf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"359\",\"sale_id\":\"191\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2153, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"195\",\"date\":\"2022-09-21 08:30:00\",\"reference_no\":\"SALE2022\\/10\\/0082\",\"customer_id\":\"187\",\"customer\":\"christopher maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"9bf6b9ed61e86ffe2ef3fbceb60f75419bc3a24522d1d093359bd8eefa470ad6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"366\",\"sale_id\":\"195\",\"product_id\":\"988\",\"product_code\":\"34797155\",\"product_name\":\"kibo star\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2154, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"193\",\"date\":\"2022-09-21 08:25:00\",\"reference_no\":\"SALE2022\\/10\\/0080\",\"customer_id\":\"188\",\"customer\":\"symon\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"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\":\"29495e41d45d4c2cf899e296142f4260a2580db5694ff33ec9eaa48c1dd9132b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"363\",\"sale_id\":\"193\",\"product_id\":\"987\",\"product_code\":\"93017271\",\"product_name\":\"solax f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4095.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"364\",\"sale_id\":\"193\",\"product_id\":\"975\",\"product_code\":\"98748070\",\"product_name\":\"To 135  f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2155, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"215\",\"date\":\"2022-09-20 14:25:00\",\"reference_no\":\"SALE467145604029\",\"customer_id\":\"165\",\"customer\":\"peter kiara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"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\":\"046064f5dea240ec061beb83637a143cf75079f51fd98e0bc7ec1f72520266eb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"395\",\"sale_id\":\"215\",\"product_id\":\"992\",\"product_code\":\"49445190\",\"product_name\":\"c.wonder\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"16.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2156, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"199\",\"date\":\"2022-09-20 08:55:00\",\"reference_no\":\"SALE2022\\/10\\/0086\",\"customer_id\":\"181\",\"customer\":\"Margret Wangari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2205.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2205.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"8c9bbb76a8352f9172d8b6981667a8869727331fb6a4132dd9e225550745605d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"370\",\"sale_id\":\"199\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2157, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"203\",\"date\":\"2022-09-19 14:05:00\",\"reference_no\":\"SALE870262485795\",\"customer_id\":\"178\",\"customer\":\"Dennis mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21735.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21735.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"21420.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\":\"6832be42be3a964f1dba7937a5f9c517302408ee8cd6b6b8fe2737f267d495f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"377\",\"sale_id\":\"203\",\"product_id\":\"986\",\"product_code\":\"59606756\",\"product_name\":\"rambo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"34.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21735.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2158, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"204\",\"date\":\"2022-09-19 14:05:00\",\"reference_no\":\"SALE445336802811\",\"customer_id\":\"177\",\"customer\":\"peter kirimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"3000.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\":\"cae34e36f4f9fa278ba9f3a526c4428a79d9c53e01943439df26bb975b0b8a6d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"380\",\"sale_id\":\"204\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2159, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"220\",\"date\":\"2022-09-17 14:35:00\",\"reference_no\":\"SALE944927961655\",\"customer_id\":\"174\",\"customer\":\"Nancy nyaguthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2000.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\":\"a62d3cff1c042ab88bbeb89bb09d09de0c2064326f1775da5a5f88e9ae5dadb8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"400\",\"sale_id\":\"220\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2160, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"222\",\"date\":\"2022-09-17 14:35:00\",\"reference_no\":\"SALE890885473503\",\"customer_id\":\"176\",\"customer\":\"Joseph karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"ee3ab43480a2ab5537379c6c914082e24826bb9b66c4bbeb0a70a56d8b806ca6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"402\",\"sale_id\":\"222\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2161, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"221\",\"date\":\"2022-09-17 14:35:00\",\"reference_no\":\"SALE329313150988\",\"customer_id\":\"175\",\"customer\":\"Salome Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2000.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\":\"f24227219b8b464875e1131ebf4af3487c61f126a0501b412c3e918131d7feb2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"401\",\"sale_id\":\"221\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2162, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"219\",\"date\":\"2022-09-17 14:35:00\",\"reference_no\":\"SALE123828858010\",\"customer_id\":\"223\",\"customer\":\"Lydia Wairimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2000.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\":\"af2fb885c66a3f6f484b26e35f84af4bb25007b3118672d4d4c11943da745dbe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"399\",\"sale_id\":\"219\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2163, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"175\",\"date\":\"2022-09-17 10:25:00\",\"reference_no\":\"SALE2022\\/09\\/0062\",\"customer_id\":\"173\",\"customer\":\"Steven Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-09-30 10:50:31\",\"total_items\":\"12\",\"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\":\"9e55c3f0c7fcb69be4b1f64f8b9bae83f975d32002d9177f9215bebaf2b3021c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"339\",\"sale_id\":\"175\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2164, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"248\",\"date\":\"2022-09-16 15:35:00\",\"reference_no\":\"SALE946190746104\",\"customer_id\":\"168\",\"customer\":\"peterson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"942756b9f96aa80c18864775ca6865e16fd8c1eadf6998b84df447d323cc6b42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"434\",\"sale_id\":\"248\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2165, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"245\",\"date\":\"2022-09-16 15:30:00\",\"reference_no\":\"SALE574652711437\",\"customer_id\":\"161\",\"customer\":\"Benard murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"315.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"999bb9f8160e4c34dd35077b4d6c05c893d36ad7110c9fe07088a114d4da2bd0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"431\",\"sale_id\":\"245\",\"product_id\":\"1022\",\"product_code\":\"52187531\",\"product_name\":\"viola\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"315.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2166, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"217\",\"date\":\"2022-09-16 14:30:00\",\"reference_no\":\"SALE322302729641\",\"customer_id\":\"222\",\"customer\":\"murimi maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6930.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6930.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"1780.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\":\"2c6f7f108b79a07f5ad91796038bb9f4e4f6ef203416acb79de686793847925d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"397\",\"sale_id\":\"217\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6930.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2167, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"210\",\"date\":\"2022-09-16 14:15:00\",\"reference_no\":\"SALE807078128578\",\"customer_id\":\"161\",\"customer\":\"Benard murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"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\":\"278418d2fb18335d63f1378f3daae90989811714767a8554beecf683770a5a70\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"389\",\"sale_id\":\"210\",\"product_id\":\"995\",\"product_code\":\"09523548\",\"product_name\":\"springbok\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2168, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"247\",\"date\":\"2022-09-14 15:35:00\",\"reference_no\":\"SALE039802461941\",\"customer_id\":\"134\",\"customer\":\"Samson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2835.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2835.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"0f8fe858cf3a25f6f863a25d675b6271023c17f497a08dec1bb565a591dc2070\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"433\",\"sale_id\":\"247\",\"product_id\":\"1024\",\"product_code\":\"70127879\",\"product_name\":\"supermarketter\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2835.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2169, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"213\",\"date\":\"2022-09-14 14:25:00\",\"reference_no\":\"SALE934515392991\",\"customer_id\":\"163\",\"customer\":\"John muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14175.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14175.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"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\":\"fc32727cc172cc8e64d0e3d02f0f8279a8d473898b67f59dbfbda9fdb363fb9d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"393\",\"sale_id\":\"213\",\"product_id\":\"980\",\"product_code\":\"89637785\",\"product_name\":\"star9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"22.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14175.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2170, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"202\",\"date\":\"2022-09-14 10:15:00\",\"reference_no\":\"SALE496370175285\",\"customer_id\":\"179\",\"customer\":\"Peter Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24255.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24255.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-03 14:06:55\",\"total_items\":\"39\",\"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\":\"76e74de4ddab4c5482ada211be0046a75e6d153473dceb36bf816bfba8e27f50\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"378\",\"sale_id\":\"202\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17010.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"27.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"379\",\"sale_id\":\"202\",\"product_id\":\"985\",\"product_code\":\"62358330\",\"product_name\":\"rafano       \",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2171, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"208\",\"date\":\"2022-09-12 14:10:00\",\"reference_no\":\"SALE726010205507\",\"customer_id\":\"159\",\"customer\":\"Stephen Muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"436311c279ebce3e2a87e71796e885e96ba77dc6dd4d6deaf421fc8ab4d74dfe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"386\",\"sale_id\":\"208\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2172, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"206\",\"date\":\"2022-09-12 14:05:00\",\"reference_no\":\"SALE958301123011\",\"customer_id\":\"122\",\"customer\":\"Benard Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4410.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"01e5797b507e5fb1872c7a8c843d937dc19b50889082a124be0a0f6c6076de9a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"383\",\"sale_id\":\"206\",\"product_id\":\"1008\",\"product_code\":\"90431435\",\"product_name\":\"fabiola\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4410.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2173, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"243\",\"date\":\"2022-09-10 15:30:00\",\"reference_no\":\"SALE843713884714\",\"customer_id\":\"154\",\"customer\":\"John Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8505.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8505.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"2000.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\":\"3340e221db9962dc7c0fb4ac03066616ea646090d0c805f51273d4464fc4d4ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"428\",\"sale_id\":\"243\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"429\",\"sale_id\":\"243\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2174, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"242\",\"date\":\"2022-09-10 15:25:00\",\"reference_no\":\"SALE649756101708\",\"customer_id\":\"153\",\"customer\":\"David Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"1000.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\":\"69aed97ef84cc384eb6d2ed920826eb2f872cc5f4fb0901abd559c856acbd887\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"427\",\"sale_id\":\"242\",\"product_id\":\"978\",\"product_code\":\"84842515\",\"product_name\":\"ranger f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2175, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"252\",\"date\":\"2022-09-09 15:45:00\",\"reference_no\":\"SALE913532278079\",\"customer_id\":\"136\",\"customer\":\"Simon\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17010.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17010.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"27\",\"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\":\"41aad37e495222d4939d6590c053c6a5ece71bf391ddc3f856171cf677fe909e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"441\",\"sale_id\":\"252\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"27.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17010.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"27.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2176, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"240\",\"date\":\"2022-09-09 15:20:00\",\"reference_no\":\"SALE581478069300\",\"customer_id\":\"151\",\"customer\":\"Maureen\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14805.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14805.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"24\",\"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\":\"b36f15347262db596a6b04002f767552542c58e2fd9117b5fff8e8c6facdb870\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"423\",\"sale_id\":\"240\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14805.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2177, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"239\",\"date\":\"2022-09-09 15:20:00\",\"reference_no\":\"1863\",\"customer_id\":\"150\",\"customer\":\"Thomas Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6615.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6615.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-07 10:53:18\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"6600.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\":\"7befa8318845111da21d69f1f0517b557c3b4a0de6c651c3790e2f4bf9cbe344\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"513\",\"sale_id\":\"239\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2178, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"236\",\"date\":\"2022-09-08 15:15:00\",\"reference_no\":\"SALE217487909881\",\"customer_id\":\"139\",\"customer\":\"Dennis Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"630.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"630.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2500.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\":\"1319ed0bfd166cccca90feabc7b4c529bc1de93fa7a50f286ca9640ba545ce91\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"418\",\"sale_id\":\"236\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"630.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2179, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"237\",\"date\":\"2022-09-08 10:20:00\",\"reference_no\":\"SALE026461168755\",\"customer_id\":\"138\",\"customer\":\"Eliud Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19215.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19215.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-05 14:28:42\",\"total_items\":\"31\",\"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\":\"0fdca04510a58574eabbe3da22cae089e94f7441a897e7acdfe51158d86e2adf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"475\",\"sale_id\":\"237\",\"product_id\":\"1010\",\"product_code\":\"09734300\",\"product_name\":\"frenze\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"476\",\"sale_id\":\"237\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2180, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"234\",\"date\":\"2022-09-07 15:15:00\",\"reference_no\":\"SALE929733903504\",\"customer_id\":\"126\",\"customer\":\"Julias Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6310.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6310.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2022-10-31 16:04:45\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"4650.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\":\"2396f8832291313330fa655729363f65df43d3f6f7046df593298395246af8fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"839\",\"sale_id\":\"234\",\"product_id\":\"1020\",\"product_code\":\"74130273\",\"product_name\":\"rembo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2205.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"840\",\"sale_id\":\"234\",\"product_id\":\"1009\",\"product_code\":\"46067001\",\"product_name\":\"superior\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"640.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"841\",\"sale_id\":\"234\",\"product_id\":\"1023\",\"product_code\":\"73526737\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"842\",\"sale_id\":\"234\",\"product_id\":\"990\",\"product_code\":\"50761714\",\"product_name\":\"tersal\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"945.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2181, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"235\",\"date\":\"2022-09-07 15:15:00\",\"reference_no\":\"SALE329788509113\",\"customer_id\":\"140\",\"customer\":\"Peter karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7245.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7245.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"f489f652d3267b57a4c22608c13d81440aa7b8a43387c7982d09f70e91a2862f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"417\",\"sale_id\":\"235\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2182, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"231\",\"date\":\"2022-09-07 15:10:00\",\"reference_no\":\"SALE035879485393\",\"customer_id\":\"142\",\"customer\":\"Stanely Gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"143f4981c9b729f5c0aebbae72111e300305be9e38ed1bda5af38c1c148f6408\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"411\",\"sale_id\":\"231\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2520.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2183, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"229\",\"date\":\"2022-09-07 14:50:00\",\"reference_no\":\"SALE195975338415\",\"customer_id\":\"218\",\"customer\":\"Joel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5670.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5670.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"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\":\"5129243b7c769abdc3510edda628d1082a156dbb358d96b06d7add95657011e9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"409\",\"sale_id\":\"229\",\"product_id\":\"983\",\"product_code\":\"72244579\",\"product_name\":\"kilele f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5670.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2184, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"228\",\"date\":\"2022-09-07 14:45:00\",\"reference_no\":\"SALE134920476081\",\"customer_id\":\"144\",\"customer\":\"Stephen Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6615.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6615.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"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\":\"d1032cf3d23a37a805979794f1347aa0d2603fa60e037058dad3ef29835dd8a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"408\",\"sale_id\":\"228\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6615.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2185, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"251\",\"date\":\"2022-09-05 15:45:00\",\"reference_no\":\"SALE732208326412\",\"customer_id\":\"137\",\"customer\":\"Jeremiah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3465.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3465.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"49fcf7e03c4c90645d39ed4dc51c6e654e694445d182ed543e10f033807d624f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"440\",\"sale_id\":\"251\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3465.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2186, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"227\",\"date\":\"2022-09-03 14:45:00\",\"reference_no\":\"SALE760598738691\",\"customer_id\":\"145\",\"customer\":\"Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"b1b4aaf941156690a7b0c0bda0d8da46f02e5e8ed4f1eb3575d2da91ba4d1fd4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"407\",\"sale_id\":\"227\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2187, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"226\",\"date\":\"2022-09-03 14:45:00\",\"reference_no\":\"SALE272304723082\",\"customer_id\":\"146\",\"customer\":\"Pastor\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4160.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4160.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"c5a1674d536c1c28f51927ed5a6b66191ae76ef10c5a913ff6a5b8f241008059\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"406\",\"sale_id\":\"226\",\"product_id\":\"993\",\"product_code\":\"34248336\",\"product_name\":\"gallant\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4160.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2188, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"225\",\"date\":\"2022-09-03 14:40:00\",\"reference_no\":\"SALE385324972444\",\"customer_id\":\"225\",\"customer\":\"Simon Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"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\":\"229c8bd10724ef761a160bba87ca73447a525cb33880fa91a19a7cf89b280100\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"405\",\"sale_id\":\"225\",\"product_id\":\"990\",\"product_code\":\"50761714\",\"product_name\":\"tersal\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2189, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"254\",\"date\":\"2022-09-02 15:50:00\",\"reference_no\":\"SALE878881996005\",\"customer_id\":\"147\",\"customer\":\"Simon Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"6302a4f095021e62b8773db839a7b7f60373dffbf6b65e668860e560ef436799\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"443\",\"sale_id\":\"254\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2190, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"224\",\"date\":\"2022-09-02 14:40:00\",\"reference_no\":\"SALE387889647484\",\"customer_id\":\"224\",\"customer\":\"Mc maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"4951a37ddc97f08f075bbfc8d53d93d336cf28301964c9d8e1175b3bf9ca88a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"404\",\"sale_id\":\"224\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2191, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"253\",\"date\":\"2022-09-01 15:45:00\",\"reference_no\":\"SALE436102688974\",\"customer_id\":\"134\",\"customer\":\"Samson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3780.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3780.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2080.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\":\"f716ebf45ab9a481eb74ec93fd32e6932df46b515ae0f2469ab9aa54e082a56e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"442\",\"sale_id\":\"253\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3780.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2192, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"233\",\"date\":\"2022-09-01 15:15:00\",\"reference_no\":\"SALE801278669081\",\"customer_id\":\"226\",\"customer\":\"Dancun Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11340.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11340.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"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\":\"365414040fa7b9ef29b17244558a0384f5ed0e8f15f6daac1a26dab69a48c839\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"414\",\"sale_id\":\"233\",\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11340.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2193, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"174\",\"date\":\"2022-08-30 14:30:00\",\"reference_no\":\"SALE2022\\/09\\/0061\",\"customer_id\":\"123\",\"customer\":\"Zablon Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"170430.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"170430.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"9\",\"updated_at\":\"2022-11-03 16:24:57\",\"total_items\":\"243\",\"pos\":\"0\",\"paid\":\"169970.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\":\"640a527e5c1661ef2b2795c58974e568b27a9624f4a2cdc0f3bfb948fdb0f283\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"940\",\"sale_id\":\"174\",\"product_id\":\"956\",\"product_code\":\"99273379\",\"product_name\":\"Tomato Max F1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"54.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34335.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"54.5000\",\"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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"941\",\"sale_id\":\"174\",\"product_id\":\"957\",\"product_code\":\"24694035\",\"product_name\":\"melon sukari f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7245.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.5000\",\"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,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"942\",\"sale_id\":\"174\",\"product_id\":\"962\",\"product_code\":\"24694035\",\"product_name\":\"melon sukari f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22680.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"943\",\"sale_id\":\"174\",\"product_id\":\"974\",\"product_code\":\"83540108\",\"product_name\":\"ansal f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"54.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34335.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"54.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"944\",\"sale_id\":\"174\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"47.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29610.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"47.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"945\",\"sale_id\":\"174\",\"product_id\":\"972\",\"product_code\":\"99273379\",\"product_name\":\"Tomato Max F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11025.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"946\",\"sale_id\":\"174\",\"product_id\":\"971\",\"product_code\":\"98225742\",\"product_name\":\"Tomato Royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1350.0000\",\"unit_price\":\"1350.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"947\",\"sale_id\":\"174\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2194, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"173\",\"date\":\"2022-08-24 14:25:00\",\"reference_no\":\"SALE2022\\/09\\/0060\",\"customer_id\":\"122\",\"customer\":\"Benard Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"b267d09ae9dc1bc71da1164f1fd50e455eb5049623f398ba3d2ca130998b6822\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"333\",\"sale_id\":\"173\",\"product_id\":\"955\",\"product_code\":\"81641084\",\"product_name\":\"capsicum Maxibell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4480.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2195, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"172\",\"date\":\"2022-08-24 14:10:00\",\"reference_no\":\"SALE2022\\/09\\/0059\",\"customer_id\":\"120\",\"customer\":\"Cyrus Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21760.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21760.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"34\",\"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\":\"68ea7d0693b93b1db31a1a7f81431e942ef3d9b07a0e4f3d3386d238ec8d1efa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"332\",\"sale_id\":\"172\",\"product_id\":\"953\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"640.0000\",\"unit_price\":\"640.0000\",\"quantity\":\"34.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21760.0000\",\"serial_no\":\"\",\"real_unit_price\":\"640.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2196, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"655\",\"date\":\"2022-08-08 10:45:00\",\"reference_no\":\"SALE0103\",\"customer_id\":\"127\",\"customer\":\"Fredrick Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"560\",\"pos\":\"0\",\"paid\":\"11200.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\":\"3288b65ccf5daebdb4e9c74216dec0bbd58f9f5606bf97030f21c6450492104c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1201\",\"sale_id\":\"655\",\"product_id\":\"1006\",\"product_code\":\"76105265\",\"product_name\":\"redswit\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"560.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"560.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2197, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"272\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE481504378579\",\"customer_id\":\"247\",\"customer\":\"Amos Kinyajui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2400.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\":\"a4898044222f2825eca33541da619813245e48a20ca5d25f2eb552e3f8947b6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"493\",\"sale_id\":\"272\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2198, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"273\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE473060621159\",\"customer_id\":\"246\",\"customer\":\"David Karatu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3000.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\":\"dc5256b4f7e9738cef0aa3779a06429dc1a93ba7fefc93d94670369ddc1c7a6a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"494\",\"sale_id\":\"273\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2199, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"274\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE202940991636\",\"customer_id\":\"245\",\"customer\":\"Alfred chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"3200.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\":\"3d46a169fd7d33429a8a4153e6c37b01126181e27e47cf7bdd7deda9001c56e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"495\",\"sale_id\":\"274\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"496\",\"sale_id\":\"274\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal F1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 15:28:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2200, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"4\",\"date\":\"2024-12-20 15:53:00\",\"reference_no\":\"QUOTE0003\",\"customer_id\":\"186\",\"customer\":\"James karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;ajskas&semi;klas&semi;las&semi;las&semi;l&semi;a&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"6300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6300.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"14d589d354e270010e16bd44d6c58f37ba78a5dd3418476cd1ca7304fbf41185\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"6\",\"quote_id\":\"4\",\"product_id\":\"1055\",\"product_code\":\"55537210\",\"product_name\":\"sukuma f1 seedlings\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":null,\"real_unit_price\":\"630.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-20 16:01:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2201, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"3\",\"date\":\"2024-12-20 15:45:00\",\"reference_no\":\"QUOTE0002\",\"customer_id\":\"129\",\"customer\":\"Josphat munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;Queen F1 50 gms propagation date 2024-12-21 and expected collection date 2025-01-21&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"26000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26000.0000\",\"status\":\"completed\",\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2024-12-20 15:51:04\",\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"29564704994f128e98f5531aa190f41547291ea0904a1376c60872e3f5f50b2d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"5\",\"quote_id\":\"3\",\"product_id\":\"1093\",\"product_code\":\"54394986\",\"product_name\":\"Vegetable Propagation \",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26000.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-20 16:01:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2202, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"2\",\"date\":\"2024-12-20 15:37:00\",\"reference_no\":\"QUOTE0001\",\"customer_id\":\"253\",\"customer\":\"Janifer Njeri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"status\":\"completed\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"8d20ce7e58cda7d78cb20244cd4368b551da9b95c44e142e59ffe8444390a0f9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3\",\"quote_id\":\"2\",\"product_id\":\"1092\",\"product_code\":\"80539265\",\"product_name\":\"Sukuma Matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-20 16:01:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2203, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1008\",\"date\":\"2024-12-20 15:55:00\",\"reference_no\":\"SALE0116\",\"customer_id\":\"253\",\"customer\":\"Janifer Njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"08bb5a272b684fd907571b33fd95da7ca7fd8c68dafad21a8295f8f7f6540275\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1757\",\"sale_id\":\"1008\",\"product_id\":\"1092\",\"product_code\":\"80539265\",\"product_name\":\"Sukuma Matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 16:02:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2204, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1007\",\"date\":\"2024-12-20 15:51:00\",\"reference_no\":\"SALE0115\",\"customer_id\":\"129\",\"customer\":\"Josphat munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Queen F1 50 gms propagation date 2024-12-21 and expected collection date 2025-01-21&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"26000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"partial\",\"payment_term\":\"30\",\"due_date\":\"2025-01-19\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"40\",\"pos\":\"0\",\"paid\":\"8000.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\":\"637169f49a63a9f50f5a4f62441d0b9d459c1c87ec2f24a497ed9a0456a1a748\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1756\",\"sale_id\":\"1007\",\"product_id\":\"1093\",\"product_code\":\"54394986\",\"product_name\":\"Vegetable Propagation \",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 16:02:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2205, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1006\",\"date\":\"2024-12-20 15:30:00\",\"reference_no\":\"SALE0114\",\"customer_id\":\"883\",\"customer\":\"eLivecode Solutions\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3000.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\":\"718a0d6bb306f9a06a9085813a052bc3faf307c9ad567229a8a2972d31ecc1a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1755\",\"sale_id\":\"1006\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 16:02:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2206, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1010\",\"date\":\"2024-12-20 15:59:40\",\"reference_no\":\"SALE\\/POS0111\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13860.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13860.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"1\",\"paid\":\"13860.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\":\"d67c5d66db5c02bef8f9ffa72e058b664f48806525a5e03df0a6150c550731c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1762\",\"sale_id\":\"1010\",\"product_id\":\"979\",\"product_code\":\"71988617\",\"product_name\":\"nova f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13860.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2024-12-20 16:02:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2207, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1009\",\"date\":\"2024-12-20 15:57:15\",\"reference_no\":\"SALE\\/POS0110\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11224.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11224.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"1\",\"paid\":\"11224.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\":\"cdd8e38d197cf589038cd0d51a1f505a4ec583a49668b4e185917a7ed3d5f6aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1758\",\"sale_id\":\"1009\",\"product_id\":\"1029\",\"product_code\":\"94024226\",\"product_name\":\"ansal pcs\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4.0000\",\"unit_price\":\"4.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4.0000\",\"sale_item_id\":null,\"product_unit_id\":\"4\",\"product_unit_code\":\"Pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"4\",\"base_unit_code\":\"Pc\"},{\"id\":\"1759\",\"sale_id\":\"1009\",\"product_id\":\"989\",\"product_code\":\"50584967\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1760\",\"sale_id\":\"1009\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"bwts f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"630.0000\",\"unit_price\":\"630.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"630.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1761\",\"sale_id\":\"1009\",\"product_id\":\"1092\",\"product_code\":\"80539265\",\"product_name\":\"Sukuma Matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-20 16:02:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2208, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1084\",\"code\":\"09412470\",\"name\":\"Terere pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"1.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"terere-pcs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:31:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2209, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1007\",\"code\":\"01166314\",\"name\":\"lettuce\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"01166314\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:31:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2210, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1059\",\"code\":\"02044109\",\"name\":\"cucumber pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"02044109\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:31:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2211, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1013\",\"code\":\"08687867\",\"name\":\"nouvelle f1\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"08687867\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:32:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2212, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1095\",\"code\":\"02637298\",\"name\":\"Melon propagation\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"38\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"02637298\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:33:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2213, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1021\",\"code\":\"04279993\",\"name\":\"tom 4420\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"04279993\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:33:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2214, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1018\",\"code\":\"05019617\",\"name\":\"pendo\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"05019617\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:38:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2215, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"991\",\"code\":\"06659209\",\"name\":\"f2\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"06659209\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:38:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2216, 'Product is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"995\",\"code\":\"09523548\",\"name\":\"springbok\",\"unit\":null,\"cost\":null,\"price\":\"700.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"09523548\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-20 16:38:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2217, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1010\",\"code\":\"09734300\",\"name\":\"frenze\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"09734300\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:32:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2218, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1078\",\"code\":\"11218398\",\"name\":\"calipha\",\"unit\":null,\"cost\":null,\"price\":\"700.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"11218398\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:32:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2219, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1056\",\"code\":\"12734436\",\"name\":\"c.wonder f1 seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"700.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"cwonder-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:32:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2220, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1079\",\"code\":\"21989071\",\"name\":\"Kartik\",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"21989071\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:53:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2221, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1066\",\"code\":\"23995551\",\"name\":\"c.wonder pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"23995551\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2222, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"994\",\"code\":\"24012114\",\"name\":\"maxbell\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"24012114\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2223, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"962\",\"code\":\"24694035\",\"name\":\"melon sukari f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"38\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"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\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"melon-sukari-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2224, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1083\",\"code\":\"25393796\",\"name\":\"Terere\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"25393796\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2225, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1064\",\"code\":\"27408927\",\"name\":\"butternut\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"40\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"27408927\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2226, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1037\",\"code\":\"27810521\",\"name\":\"sukuma pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"1.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"27810521\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2227, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1054\",\"code\":\"28166248\",\"name\":\"Spinach f1 Seedlings\",\"unit\":null,\"cost\":null,\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"spinach-f1-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:54:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2228, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"963\",\"code\":\"28833838\",\"name\":\"capsicum s.bell f1\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"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\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"capsicum-sbell-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2229, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1005\",\"code\":\"31301551\",\"name\":\"solo sunrise\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"31301551\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2230, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1040\",\"code\":\"31497259\",\"name\":\"spinach pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"31497259\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2231, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1051\",\"code\":\"31995539\",\"name\":\"s.bell pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"31995539\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2232, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1050\",\"code\":\"32621421\",\"name\":\"victoria f1 seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"171.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"32621421\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2233, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1048\",\"code\":\"32895276\",\"name\":\"Kiboko f1 seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"kiboko-f1-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2234, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1077\",\"code\":\"34051425\",\"name\":\"vilani f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"34051425\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2235, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"993\",\"code\":\"34248336\",\"name\":\"gallant\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"34248336\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2236, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"988\",\"code\":\"34797155\",\"name\":\"kibo star\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"34797155\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2237, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1073\",\"code\":\"35788577\",\"name\":\"Revelation\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"35788577\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2238, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1030\",\"code\":\"36992338\",\"name\":\"bwts pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"36992338\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:55:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2239, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1082\",\"code\":\"37214792\",\"name\":\"Predi f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"37214792\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2240, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"999\",\"code\":\"40320316\",\"name\":\"malkia skuma\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"40320316\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2241, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1026\",\"code\":\"41165230\",\"name\":\"long purple\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"41165230\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2242, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1046\",\"code\":\"43029983\",\"name\":\"S.bell f1 seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1080.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"297.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"sbell-f1-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2243, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1067\",\"code\":\"43349242\",\"name\":\"Managu pc\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"1.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"43349242\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2244, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"964\",\"code\":\"44150313\",\"name\":\"Tomato Bwts F1 seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"tomato-bwts-f1-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2245, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1049\",\"code\":\"44344626\",\"name\":\"Zawadi f1seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"zawadi-f1seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2246, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1068\",\"code\":\"45930987\",\"name\":\"kiboko pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"45930987\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2247, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1009\",\"code\":\"46067001\",\"name\":\"superior\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"46067001\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2248, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1096\",\"code\":\"46444342\",\"name\":\"Terminator\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"46444342\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:56:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2249, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1053\",\"code\":\"47042245\",\"name\":\"Malkia Sukuma seedlings\",\"unit\":null,\"cost\":null,\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"malkia-sukuma-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2250, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1089\",\"code\":\"47608728\",\"name\":\"Gloria Seedlins\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"11.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"47608728\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2251, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1000\",\"code\":\"48711844\",\"name\":\"collard\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"48711844\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2252, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"992\",\"code\":\"49445190\",\"name\":\"c.wonder\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"49445190\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2253, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1025\",\"code\":\"49678906\",\"name\":\"dynasty\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"49678906\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2254, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1015\",\"code\":\"50520507\",\"name\":\"kimbo\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"50520507\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2255, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"989\",\"code\":\"50584967\",\"name\":\"crown\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"50584967\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:57:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2256, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1045\",\"code\":\"50597015\",\"name\":\"Tomato Nova f1 seeedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"tomato-nova-f1-seeedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:58:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2257, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"990\",\"code\":\"50761714\",\"name\":\"tersal\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"50761714\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:58:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2258, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1022\",\"code\":\"52187531\",\"name\":\"viola\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"40\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"52187531\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2259, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1093\",\"code\":\"54394986\",\"name\":\"Vegetable Propagation \",\"unit\":null,\"cost\":null,\"price\":\"650.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"54394986\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2260, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1035\",\"code\":\"54469466\",\"name\":\"queen pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"54469466\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2261, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1055\",\"code\":\"55537210\",\"name\":\"sukuma f1 seedlings\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"sukuma-f1-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2262, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1071\",\"code\":\"56360805\",\"name\":\"Managu seedlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"managu-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2263, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1034\",\"code\":\"58424259\",\"name\":\"victoria pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"58424259\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2264, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1090\",\"code\":\"58458372\",\"name\":\"fanaka f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"58458372\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2265, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1042\",\"code\":\"58478476\",\"name\":\"c. wonder pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"58478476\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2266, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"986\",\"code\":\"59606756\",\"name\":\"rambo\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"59606756\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2267, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"966\",\"code\":\"59785009\",\"name\":\"Pawpaw malkia F1\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"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\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"pawpaw-malkia-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2268, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1074\",\"code\":\"59488939\",\"name\":\"Bareto f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"59488939\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 08:59:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2269, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1088\",\"code\":\"62031388\",\"name\":\"gloria pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"62031388\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2270, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"984\",\"code\":\"61285006\",\"name\":\"tm f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"61285006\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2271, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1085\",\"code\":\"62333113\",\"name\":\"Broccoli pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"broccoli-pcs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2272, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"985\",\"code\":\"62358330\",\"name\":\"rafano       \",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"62358330\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2273, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"998\",\"code\":\"62393307\",\"name\":\"gloria\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"62393307\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2274, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1076\",\"code\":\"65017700\",\"name\":\"Tunda f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"65017700\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2275, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"967\",\"code\":\"66171982\",\"name\":\"queen f1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"99.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":null,\"slug\":\"queen-f1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2276, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1014\",\"code\":\"72774252\",\"name\":\"butian\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"72774252\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2277, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1023\",\"code\":\"73526737\",\"name\":\"cucumber\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"73526737\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:00:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2278, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1020\",\"code\":\"74130273\",\"name\":\"rembo\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"74130273\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2279, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1027\",\"code\":\"74873088\",\"name\":\"eggplant\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"74873088\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2280, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1006\",\"code\":\"76105265\",\"name\":\"redswit\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"76105265\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2281, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"977\",\"code\":\"76135521\",\"name\":\"bwt f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"76135521\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2282, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1039\",\"code\":\"76678450\",\"name\":\"malkia skuma pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"76678450\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2283, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1032\",\"code\":\"78441492\",\"name\":\"royal pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"78441492\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2284, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1092\",\"code\":\"80539265\",\"name\":\"Sukuma Matumbo\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"800.0000\",\"alert_quantity\":\"5.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"8.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"80539265\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2285, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"968\",\"code\":\"81641084\",\"name\":\"capsicum Maxibell f1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":null,\"slug\":\"capsicum-maxibell-f1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:01:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2286, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1062\",\"code\":\"82384830\",\"name\":\"mydas f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"40\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"82384830\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:02:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2287, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"974\",\"code\":\"83540108\",\"name\":\"ansal f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"83540108\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:02:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2288, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1016\",\"code\":\"84646763\",\"name\":\"drd 8551\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"84646763\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2289, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"981\",\"code\":\"84731561\",\"name\":\"svte 6653\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"84731561\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2290, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"978\",\"code\":\"84842515\",\"name\":\"ranger f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"84842515\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2291, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1001\",\"code\":\"85058872\",\"name\":\"Ahadi seedlings\",\"unit\":null,\"cost\":null,\"price\":\"800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"ahadi-seedlings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2292, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1065\",\"code\":\"85748817\",\"name\":\"Bigrock\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"85748817\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2293, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1011\",\"code\":\"86696082\",\"name\":\"riograde\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"86696082\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:03:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2294, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1061\",\"code\":\"87787898\",\"name\":\"Demon f1\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"87787898\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2295, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1028\",\"code\":\"88247587\",\"name\":\"butternut\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"40\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"88247587\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2296, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1063\",\"code\":\"88646382\",\"name\":\"f2 pawpaw\",\"unit\":null,\"cost\":null,\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"88646382\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2297, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1060\",\"code\":\"66451514\",\"name\":\"f2 capsicum\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"66451514\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2298, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1069\",\"code\":\"68868691\",\"name\":\"Admiral\",\"unit\":null,\"cost\":null,\"price\":\"640.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"68868691\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2299, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1080\",\"code\":\"69042146\",\"name\":\"Padma\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"69042146\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2300, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1081\",\"code\":\"71092465\",\"name\":\"Rosemary\",\"unit\":null,\"cost\":null,\"price\":\"50.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"71092465\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2301, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1024\",\"code\":\"70127879\",\"name\":\"supermarketter\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"39\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"70127879\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:04:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2302, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1086\",\"code\":\"71784643\",\"name\":\"cauliflower pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"71784643\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2303, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"979\",\"code\":\"71988617\",\"name\":\"nova f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"71988617\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2304, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"965\",\"code\":\"50956262\",\"name\":\"Tomato Ansal Seedling F1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"484.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\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"tomato-ansal-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2305, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"983\",\"code\":\"72244579\",\"name\":\"kilele f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"72244579\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2306, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1033\",\"code\":\"72586338\",\"name\":\"nova pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"3.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"72586338\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2307, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"996\",\"code\":\"72630556\",\"name\":\"victoria f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"72630556\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2308, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"969\",\"code\":\"88906214\",\"name\":\"Kiboko f1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":null,\"slug\":\"kiboko-f1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2309, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"980\",\"code\":\"89637785\",\"name\":\"star9065\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"89637785\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2310, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1008\",\"code\":\"90431435\",\"name\":\"fabiola\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"90431435\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2311, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1052\",\"code\":\"89880185\",\"name\":\"Star9065 pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"5.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"star9065-pcs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:05:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2312, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1002\",\"code\":\"99047791\",\"name\":\"f\\/hook\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"37\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"99047791\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2313, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"972\",\"code\":\"99273379\",\"name\":\"tomato max F1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"tomato-max-f1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2314, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"975\",\"code\":\"98748070\",\"name\":\"To 135  f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"98748070\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2315, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"971\",\"code\":\"98225742\",\"name\":\"Tomato Royal seedling 705\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1350.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"tomato-royal-seedling-705\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2316, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1087\",\"code\":\"98145462\",\"name\":\"ansal  sdlings\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"1600.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":\"0\",\"slug\":\"98145462\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2317, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1075\",\"code\":\"90725824\",\"name\":\"chairman\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"90725824\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:06:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2318, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1070\",\"code\":\"91519144\",\"name\":\"Indra\",\"unit\":null,\"cost\":null,\"price\":\"700.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"35\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"91519144\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2319, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1058\",\"code\":\"92467493\",\"name\":\"zawadi pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"33\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"92467493\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2320, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"987\",\"code\":\"93017271\",\"name\":\"solax f1\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"93017271\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2321, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"970\",\"code\":\"93591242\",\"name\":\"pawpaw vegaf1\",\"unit\":\"5\",\"cost\":\"0.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"5\",\"purchase_unit\":\"5\",\"brand\":null,\"slug\":\"pawpaw-vegaf1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2322, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1029\",\"code\":\"94024226\",\"name\":\"ansal pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"4.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"94024226\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2323, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1043\",\"code\":\"96395179\",\"name\":\"vega pcs\",\"unit\":\"4\",\"cost\":\"0.0000\",\"price\":\"150.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"36\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"4\",\"purchase_unit\":\"4\",\"brand\":\"0\",\"slug\":\"96395179\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2324, 'Product is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1091\",\"code\":\"97988726\",\"name\":\"assila\",\"unit\":null,\"cost\":null,\"price\":\"630.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"34\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"0\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"service\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"97988726\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2024-12-21 09:07:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2325, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"5\",\"date\":\"2024-12-20 16:46:00\",\"reference_no\":\"QUOTE0004\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;Order date is 20&sol;12&sol;2024 and collection date 2&sol;1&sol;2025&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"status\":\"pending\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"41d32f98ae37ba506a021374ef198449fdb2c0117461f9fca9ece3c4671de0a8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"7\",\"quote_id\":\"5\",\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null}]}', '2024-12-23 13:01:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2326, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"6\",\"date\":\"2024-12-23 13:01:00\",\"reference_no\":\"QUOTE0005\",\"customer_id\":\"887\",\"customer\":\"ANTHONY MURIITHI\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;balance of 4 trays royal&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"74df915550f1f9acdcc06e4813a117db53ddbac030e436a4dd3971dd3b7d7380\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"8\",\"quote_id\":\"6\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-23 13:02:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2327, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1021\",\"date\":\"2024-12-23 13:05:00\",\"reference_no\":\"SALE0127\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"d4b3fc15e7bd5f28cdf6edbe1e61d68c4ee774b2a7010f2c963065e84f0341ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1773\",\"sale_id\":\"1021\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 13:07:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2328, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"44\",\"reference_no\":\"PO0036\",\"date\":\"2024-12-23 13:21:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;deposited 6 trays ansal&lt;&sol;p&gt;\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"669\",\"purchase_id\":\"44\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"670\",\"purchase_id\":\"44\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2329, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"43\",\"reference_no\":\"PO0035\",\"date\":\"2024-12-23 12:35:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"668\",\"purchase_id\":\"43\",\"transfer_id\":null,\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"49.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"49.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"49.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"49.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2330, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"42\",\"reference_no\":\"PO0034\",\"date\":\"2024-12-23 12:14:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"667\",\"purchase_id\":\"42\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"464.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"455.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"464.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"464.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2331, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"41\",\"reference_no\":\"PO0033\",\"date\":\"2024-12-23 12:13:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"666\",\"purchase_id\":\"41\",\"transfer_id\":null,\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"15.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"15.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2332, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"40\",\"reference_no\":\"PO0032\",\"date\":\"2024-12-21 10:30:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"662\",\"purchase_id\":\"40\",\"transfer_id\":null,\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2024-12-21\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"663\",\"purchase_id\":\"40\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"484.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"477.5000\",\"date\":\"2024-12-21\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"484.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"484.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"664\",\"purchase_id\":\"40\",\"transfer_id\":null,\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"26.0000\",\"date\":\"2024-12-21\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"665\",\"purchase_id\":\"40\",\"transfer_id\":null,\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"99.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"99.0000\",\"date\":\"2024-12-21\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"99.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"99.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2333, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"39\",\"reference_no\":\"PO0031\",\"date\":\"2024-12-20 15:26:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"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\":\"661\",\"purchase_id\":\"39\",\"transfer_id\":null,\"product_id\":\"1092\",\"product_code\":\"80539265\",\"product_name\":\"Sukuma Matumbo\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2334, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"38\",\"reference_no\":\"PO0030\",\"date\":\"2024-12-20 15:18:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"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\":\"656\",\"purchase_id\":\"38\",\"transfer_id\":null,\"product_id\":\"967\",\"product_code\":\"66171982\",\"product_name\":\"queen f1\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"99.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"99.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"99.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"657\",\"purchase_id\":\"38\",\"transfer_id\":null,\"product_id\":\"1046\",\"product_code\":\"43029983\",\"product_name\":\"S.bell f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"297.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"297.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"297.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"658\",\"purchase_id\":\"38\",\"transfer_id\":null,\"product_id\":\"1050\",\"product_code\":\"32621421\",\"product_name\":\"victoria f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"171.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"87.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"171.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"171.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"659\",\"purchase_id\":\"38\",\"transfer_id\":null,\"product_id\":\"1089\",\"product_code\":\"47608728\",\"product_name\":\"Gloria Seedlins\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"660\",\"purchase_id\":\"38\",\"transfer_id\":null,\"product_id\":\"965\",\"product_code\":\"50956262\",\"product_name\":\"Tomato Ansal Seedling F1\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"484.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"180.0000\",\"date\":\"2024-12-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"484.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"484.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-23 13:23:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2335, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1023\",\"date\":\"2024-12-23 13:18:00\",\"reference_no\":\"SALE0129\",\"customer_id\":\"888\",\"customer\":\"Zachaeus Gachuru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;Paid deposit of 4000 the balance is 8&comma;000&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-23 13:41:55\",\"total_items\":\"6\",\"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\":\"da10beb26a04464587d14ab210bdda79c3e051c3e0f76b43e1e67c9158269169\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1777\",\"sale_id\":\"1023\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 13:42:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2336, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1024\",\"date\":\"2024-12-23 14:02:00\",\"reference_no\":\"SALE0130\",\"customer_id\":\"813\",\"customer\":\"Zacchaeus\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-23 14:10:08\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"12000.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\":\"e63aa0d7865842ce67e8d9ed4385a2a0089ebd2f5c0cc733b8e61c52e14a2d1a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1779\",\"sale_id\":\"1024\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 14:12:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2337, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"9\",\"date\":\"2024-12-23 14:20:00\",\"reference_no\":\"QUOTE0008\",\"customer_id\":\"889\",\"customer\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-23 14:22:37\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dafca27b2d14612745268c681ef0bb365a034d6c1a23ef14cd57b3d54f559309\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"12\",\"quote_id\":\"9\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-23 14:23:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2338, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"7\",\"date\":\"2024-12-23 13:02:00\",\"reference_no\":\"QUOTE0006\",\"customer_id\":\"124\",\"customer\":\"Dan Muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;sharp 80 pieces propagation&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e89bb500465fb5b8281b83ad045f31d8c867f808263fff460d31db2abc4b0057\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"9\",\"quote_id\":\"7\",\"product_id\":\"1106\",\"product_code\":\"46426438\",\"product_name\":\"paw paws propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"20.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"80.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-23 15:14:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2339, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1027\",\"date\":\"2024-12-23 15:15:00\",\"reference_no\":\"SALE0133\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"9141c21e75c0b4af76ca931e2371d3787706df7b47707e5ad82d19f7e1055923\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1782\",\"sale_id\":\"1027\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 15:16:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2340, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1028\",\"date\":\"2024-12-23 15:18:00\",\"reference_no\":\"SALE0134\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"b7b5fb715cb231183fdb17df506f9eca6c040c1ba309528f413ec556832422be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1783\",\"sale_id\":\"1028\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 15:19:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2341, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1034\",\"date\":\"2024-12-23 17:26:00\",\"reference_no\":\"SALE0140\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"44000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"40900.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\":\"718ba65110c88dbcf9809371147b18ffbded8b7938fa46969a4b8921a7edabca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1790\",\"sale_id\":\"1034\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 17:34:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2342, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1035\",\"date\":\"2024-12-23 17:35:00\",\"reference_no\":\"SALE0141\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"2200\",\"total_discount\":\"2200.0000\",\"order_discount\":\"2200.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"41800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-23 17:37:45\",\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"19900.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\":\"f510afbb6b35c9a6fdfb1bdacff6d7a960c362cf4d133f69a0c2ff2e2a8c2280\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1792\",\"sale_id\":\"1035\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-23 17:38:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2343, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1026\",\"date\":\"2024-12-23 14:25:00\",\"reference_no\":\"SALE0132\",\"customer_id\":\"890\",\"customer\":\"Benson Mugweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-24 12:53:31\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"11500.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\":\"75407719bf8c87a0eec3875854fb2127fe8c8c19d748b8f785e95353fc32f07e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1807\",\"sale_id\":\"1026\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-24 12:54:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2344, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"45\",\"reference_no\":\"PO0037\",\"date\":\"2024-12-23 15:41:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"672\",\"purchase_id\":\"45\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"673\",\"purchase_id\":\"45\",\"transfer_id\":null,\"product_id\":\"997\",\"product_code\":\"17040387\",\"product_name\":\"gloria\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2024-12-23\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2024-12-24 13:41:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2345, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1056\",\"date\":\"2024-12-26 14:35:00\",\"reference_no\":\"SALE0162\",\"customer_id\":\"909\",\"customer\":\"Charles Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:05:00\",\"total_items\":\"3\",\"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\":\"ad10b3dda9d73d6192f4e790119b44bb1b0abc6254bc4d631cc04da3727566ca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1824\",\"sale_id\":\"1056\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-28 11:05:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2346, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1067\",\"date\":\"2024-12-28 11:54:00\",\"reference_no\":\"SALE0173\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"504.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"504.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"4d8f676b2807f9ab8ea5e57a6ed412fb1b0b1c568427dd51c417db4a013b82b7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1839\",\"sale_id\":\"1067\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.6250\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"504.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.6300\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-28 11:56:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2347, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1068\",\"date\":\"2024-12-28 11:56:00\",\"reference_no\":\"SALE0174\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1008.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"8.00\",\"total_discount\":\"8.0000\",\"order_discount\":\"8.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:58:35\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"1c2b71528fa72cad02e2c96d7dc5b76c194875e2c3f05b46c3f9e6ef2ee48881\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1842\",\"sale_id\":\"1068\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.6250\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"504.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.6300\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1843\",\"sale_id\":\"1068\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.6250\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"504.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.6300\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-28 12:15:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2348, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"58\",\"date\":\"2024-12-30 14:36:00\",\"reference_no\":\"QUOTE0056\",\"customer_id\":\"929\",\"customer\":\"Nancy Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0cfef6db0f3b4b4452eff689f13c2bef05ed1614ac6ff619be29f06637004c5d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"72\",\"quote_id\":\"58\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2024-12-30 14:45:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2349, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1093\",\"date\":\"2024-12-30 14:37:00\",\"reference_no\":\"SALE0199\",\"customer_id\":\"929\",\"customer\":\"Nancy Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 14:43:28\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"16000.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\":\"9b15ed37afa9807a1a42e5bcbeb84fb9098105f7de7451a3b6ec73fdc8b35f25\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1891\",\"sale_id\":\"1093\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-30 14:46:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2350, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1108\",\"date\":\"2024-12-31 12:29:00\",\"reference_no\":\"SALE0214\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"74000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"3700\",\"total_discount\":\"3700.0000\",\"order_discount\":\"3700.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"70300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"37\",\"pos\":\"0\",\"paid\":\"70300.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\":\"eeccb435f9bc1f7d709e7898418cd811ea868b9f8051642af43098aa6cd56528\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1910\",\"sale_id\":\"1108\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"74000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"37.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2024-12-31 12:30:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2351, 'Delivery is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-09-28 13:06:00\",\"sale_id\":\"169\",\"do_reference_no\":\"2221\",\"sale_reference_no\":\"1234\",\"customer\":\"Walk-in Customer\",\"address\":\"<p>Customer Address Thika Thika 46000 Malaysia<br>Tel: 0123456789 Email: info@saganaplanters.com<\\/p>\",\"note\":\"\",\"status\":\"delivering\",\"attachment\":null,\"delivered_by\":\"James kimemia\",\"received_by\":\"\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null}}', '2024-12-31 12:34:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2352, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1145\",\"date\":\"2025-01-04 08:52:00\",\"reference_no\":\"SALE0251\",\"customer_id\":\"943\",\"customer\":\"peterson kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:54:20\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"23a8e28757319ff098fb936e2f162c74a7afc8120452d957364bb75b32f63e9b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1975\",\"sale_id\":\"1145\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-04 08:54:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2353, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1147\",\"date\":\"2025-01-04 09:06:00\",\"reference_no\":\"SALE0253\",\"customer_id\":\"944\",\"customer\":\"peter karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"b090e80382a71985f3bf1693ec30dd2b1ee67ea5eff6aa68e9d762c9ebe49428\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1977\",\"sale_id\":\"1147\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-04 09:06:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2354, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"78\",\"date\":\"2025-01-04 09:05:00\",\"reference_no\":\"QUOTE0076\",\"customer_id\":\"944\",\"customer\":\"peter karani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b3c7eb6177bf003e45adb3094b7b18d8abca76cad1d6a92545fce716705a0976\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"96\",\"quote_id\":\"78\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-04 09:10:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2355, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1175\",\"date\":\"2025-01-07 15:51:00\",\"reference_no\":\"SALE0281\",\"customer_id\":\"954\",\"customer\":\"besnon mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-07 15:52:17\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"48d60626e17b3d98add3d39d108daf5bd4a6e371e57fba0b5728b6acc09d0ece\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2016\",\"sale_id\":\"1175\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"sukuma matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-07 15:52:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2356, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"87\",\"date\":\"2025-01-07 15:23:00\",\"reference_no\":\"QUOTE0085\",\"customer_id\":\"952\",\"customer\":\"wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5850.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5850.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9d78a6708d7ed3e80dbda7680fc68a0557ce9ed0099ddb8a573dab99049ac3dd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"106\",\"quote_id\":\"87\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5850.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-07 15:54:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2357, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"88\",\"date\":\"2025-01-07 15:46:00\",\"reference_no\":\"QUOTE0086\",\"customer_id\":\"953\",\"customer\":\"josphat karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"31caf1eca5fc7d96f49d7f0c37142b142117ea34af70aa155a16cf8dc8885944\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"107\",\"quote_id\":\"88\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-07 15:54:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2358, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"93\",\"date\":\"2025-01-09 09:34:00\",\"reference_no\":\"QUOTE0091\",\"customer_id\":\"957\",\"customer\":\"james miano\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fb9fcae3d342d10b578a13c11f3ccaef3da08cecb0b6951b6c3d286171cdca14\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"115\",\"quote_id\":\"93\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-09 09:34:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2359, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1203\",\"date\":\"2025-01-10 09:18:00\",\"reference_no\":\"SALE0309\",\"customer_id\":\"847\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"abcd00041b0917b9783f01bffb71dc66ba229d6c75d5471e11cbe6c37f8bb887\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2079\",\"sale_id\":\"1203\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-10 09:19:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2360, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1222\",\"date\":\"2025-01-09 12:30:00\",\"reference_no\":\"SALE0328\",\"customer_id\":\"847\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:31:35\",\"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\":\"dd57e3c62938a4b1ab70b2f7ae664140ddb85641ad2b4de1da9b5d84a8702462\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2121\",\"sale_id\":\"1222\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-13 12:31:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2361, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1235\",\"date\":\"2025-01-13 13:32:00\",\"reference_no\":\"SALE0341\",\"customer_id\":\"963\",\"customer\":\"johnson mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"40087e31451fe79643bce2bac69d153cee5788cb56f5540743f82e09e3addd3c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2139\",\"sale_id\":\"1235\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-13 13:32:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2362, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1250\",\"date\":\"2025-01-14 08:34:00\",\"reference_no\":\"SALE0356\",\"customer_id\":\"1020\",\"customer\":\"Gera;ld Munyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 08:36:12\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"15200.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\":\"45820463916d7877b454e72dc4b47a041724a3977fed5676561cb5ee447c828e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2161\",\"sale_id\":\"1250\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-14 08:36:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2363, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"157\",\"date\":\"2025-01-14 08:34:00\",\"reference_no\":\"QUOTE0155\",\"customer_id\":\"1020\",\"customer\":\"Gera;ld Munyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c3c83c13c59c3b3dc159d06e0f0e8e64459a1da1fe46681d192f6f3ba1e31cb9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"190\",\"quote_id\":\"157\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-14 08:37:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2364, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"96\",\"date\":\"2025-01-09 10:22:00\",\"reference_no\":\"QUOTE0094\",\"customer_id\":\"960\",\"customer\":\"stephen njiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e9bfcb408f86dae31a0da3bf8803f3efbfe821bad29db15fb07dcf54be6a5908\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"118\",\"quote_id\":\"96\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-14 08:42:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2365, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1205\",\"date\":\"2024-01-31 09:33:00\",\"reference_no\":\"SALE0311\",\"customer_id\":\"977\",\"customer\":\"John mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:00:25\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4000.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\":\"2e350c90393774bd48ceebd94332ed04b507898cdd04d5060171731b9877dd50\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2086\",\"sale_id\":\"1205\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2087\",\"sale_id\":\"1205\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-14 10:11:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2366, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1310\",\"date\":\"2025-01-21 09:43:00\",\"reference_no\":\"SALE0416\",\"customer_id\":\"1058\",\"customer\":\"Harrison Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"8000.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\":\"a90d9f8550a51fa52d4d79fcecc55cce670f0c866ba767863022ae5fdac388d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2259\",\"sale_id\":\"1310\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-21 09:45:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2367, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"18\",\"date\":\"2024-12-23 17:25:00\",\"reference_no\":\"QUOTE0017\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"44000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c4410a48e26a463742000c9f08787073d51a5225ccdd1b649839bc06ab069237\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"22\",\"quote_id\":\"18\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-24 09:57:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2368, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"19\",\"date\":\"2024-12-23 17:34:00\",\"reference_no\":\"QUOTE0018\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"44000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1a221df02c952e29e5103b575486853f7a2e25152a7ec85b64fd9196c20e4190\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"23\",\"quote_id\":\"19\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-24 09:57:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2369, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1358\",\"date\":\"2025-01-27 14:52:00\",\"reference_no\":\"SALE0464\",\"customer_id\":\"1101\",\"customer\":\"Charles Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-27 15:30:50\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4000.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\":\"8825b71bc6fc77c1a202211726fec7aeeb87cb822602a0ff9759a9a78817e931\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2367\",\"sale_id\":\"1358\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-01-27 15:31:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2370, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"255\",\"date\":\"2025-01-27 16:08:00\",\"reference_no\":\"QUOTE0253\",\"customer_id\":\"1110\",\"customer\":\"michael Thumaita\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30225.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30225.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b8fb333d400c0281ba2db88d3410ba36af855fd15dfbda9573f71ccac3f10bc8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"303\",\"quote_id\":\"255\",\"product_id\":\"1119\",\"product_code\":\"30081825\",\"product_name\":\"mix\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"46.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30225.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"46.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-01-27 16:10:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2371, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1443\",\"date\":\"2025-02-01 15:54:00\",\"reference_no\":\"SALE0549\",\"customer_id\":\"1162\",\"customer\":\"mr munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"288000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"288000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"320\",\"pos\":\"0\",\"paid\":\"40000.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\":\"e0c6b802b0b9f0824ef8446c81ea8553fbdd6f63302b23524bd4adfc901cebef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2504\",\"sale_id\":\"1443\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"160000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2505\",\"sale_id\":\"1443\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"128000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-01 15:57:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2372, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1163\",\"date\":\"2025-01-07 14:58:00\",\"reference_no\":\"SALE0269\",\"customer_id\":\"947\",\"customer\":\"james miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"27b179064b30e331ac2db4c19575cdb3324007509ad0f1d411f8d6e4d7e5d771\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2001\",\"sale_id\":\"1163\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-03 15:29:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2373, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1481\",\"date\":\"2024-12-12 09:43:00\",\"reference_no\":\"SALE0587\",\"customer_id\":\"1186\",\"customer\":\"isaac mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"120000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1200\",\"total_discount\":\"1200.0000\",\"order_discount\":\"1200.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"118800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 09:46:14\",\"total_items\":\"120\",\"pos\":\"0\",\"paid\":\"30000.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\":\"8353973a08f7870a9884ac7f932d3c34f4b6be94de04abcc0479c49db673a4e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2571\",\"sale_id\":\"1481\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"120.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"120.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-04 09:46:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2374, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"343\",\"date\":\"2025-02-04 09:42:00\",\"reference_no\":\"QUOTE0341\",\"customer_id\":\"1186\",\"customer\":\"isaac mungai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3d90f7147c358d65c1ff1e0cf64a974c08a14cec0e3608f6dea93c821943fd45\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"401\",\"quote_id\":\"343\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-04 09:47:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2375, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1566\",\"date\":\"2025-02-13 13:21:00\",\"reference_no\":\"SALE0672\",\"customer_id\":\"1246\",\"customer\":\"Esther njoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:22:21\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"8000.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\":\"8845fc6739cec370654de8b073b23c4da5e4885b3f2fa2be7f249a7f89294235\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2737\",\"sale_id\":\"1566\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2738\",\"sale_id\":\"1566\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-13 13:22:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2376, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"424\",\"date\":\"2025-02-12 13:20:00\",\"reference_no\":\"QUOTE0422\",\"customer_id\":\"1247\",\"customer\":\"julius karriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"95ffdafd3096432e19a49436b857c2f67e6c3fb8ab50d81852dd1439392ea27f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"496\",\"quote_id\":\"424\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-13 13:31:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2377, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1582\",\"date\":\"2025-02-13 15:05:00\",\"reference_no\":\"SALE0688\",\"customer_id\":\"788\",\"customer\":\"Paul\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 15:14:12\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"4637ec66d0f7793cc9bf9d9bd3ce0e6c11af0044ddef31c5f935ed89f6b78ea5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2775\",\"sale_id\":\"1582\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-13 15:14:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2378, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1641\",\"date\":\"2025-02-18 11:09:00\",\"reference_no\":\"SALE0747\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"b029586f4a8cbd4abd4671d4e00a9e27c1cf8d8c76bf63e60ae17bc1b39cddfa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2860\",\"sale_id\":\"1641\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:12:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2379, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1644\",\"date\":\"2025-02-18 11:19:00\",\"reference_no\":\"SALE0750\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"1e72234d99103e11052d00bb010c993d66e04a3a3476674cab51f90915fd3fe3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2863\",\"sale_id\":\"1644\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:26:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2380, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1643\",\"date\":\"2025-02-18 11:18:00\",\"reference_no\":\"SALE0749\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 11:25:36\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"32f0c94d013d7c08c1f516354f77d3df02f0e9ee376ca340d684f7c0d3785ae5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2865\",\"sale_id\":\"1643\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:26:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2381, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1642\",\"date\":\"2025-02-18 11:17:00\",\"reference_no\":\"SALE0748\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 11:25:02\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"396354322c933485d2a200fd419b7653665a4d22ceabdc24bf6b484a10540299\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2864\",\"sale_id\":\"1642\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:26:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2382, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1640\",\"date\":\"2025-02-18 08:51:00\",\"reference_no\":\"SALE0746\",\"customer_id\":\"917\",\"customer\":\"Peterson Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"5a290babf4b8069fcdf7e14cfd9153dbb1209cb2707ebf9e76313e0fb0e09a6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2859\",\"sale_id\":\"1640\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2383, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1639\",\"date\":\"2025-02-18 08:49:00\",\"reference_no\":\"SALE0745\",\"customer_id\":\"917\",\"customer\":\"Peterson Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"10000.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\":\"7f0ff6acccb9fde20dd23f7738c0ee6c93b3ac95f4f28ad90d50b8a90fa4198f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2858\",\"sale_id\":\"1639\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2384, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1636\",\"date\":\"2025-02-18 08:39:00\",\"reference_no\":\"SALE0742\",\"customer_id\":\"892\",\"customer\":\"priscillah wanjira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-18 08:41:52\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4000.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\":\"1181db0fcdda2c5f5adffb16553a409ebbecf0736aa3a60b27fbf3b541fd0090\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2856\",\"sale_id\":\"1636\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2385, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1635\",\"date\":\"2025-02-18 08:38:00\",\"reference_no\":\"SALE0741\",\"customer_id\":\"210\",\"customer\":\"Ibra\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"467decf585b8e7d0dc40c7962f7ae75d5a28866f8b05a6204cab0d7ba64c4fd8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2853\",\"sale_id\":\"1635\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2386, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1634\",\"date\":\"2025-02-18 08:36:00\",\"reference_no\":\"SALE0740\",\"customer_id\":\"1290\",\"customer\":\"Jonathan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"1c072cc855477bc7e830751d211a9eeddac9139047ed5b531d008ddd134e093b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2852\",\"sale_id\":\"1634\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2387, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1638\",\"date\":\"2025-02-17 08:45:00\",\"reference_no\":\"SALE0744\",\"customer_id\":\"1179\",\"customer\":\"Nicholas mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"87213f8d7791db21acbc563b8131f02f37580c834e82609f9623b5de79a953b1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2857\",\"sale_id\":\"1638\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2388, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1637\",\"date\":\"2025-02-17 08:41:00\",\"reference_no\":\"SALE0743\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"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\":\"a1f58ef068ca4d5eb592478d7c43c78f063293c334f14623364f7259a24d6215\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2855\",\"sale_id\":\"1637\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2389, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1633\",\"date\":\"2025-02-15 14:19:00\",\"reference_no\":\"SALE0739\",\"customer_id\":\"219\",\"customer\":\"Justus Kimandu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d2ae790e42f3363d99119caac031bc3ebf6f53c6aeef0400f1ff7cbd52adefb6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2851\",\"sale_id\":\"1633\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2390, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1628\",\"date\":\"2025-02-15 14:08:00\",\"reference_no\":\"SALE0734\",\"customer_id\":\"1250\",\"customer\":\"Lydiah  mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"254d3f7290494f77494269da442517030bfc688fe097c88de603185eee1caeb9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2844\",\"sale_id\":\"1628\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2391, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1626\",\"date\":\"2025-02-15 12:38:00\",\"reference_no\":\"SALE0732\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"f5fa7f8481d2556d64b6e269e115d6877b76b371faaf41c1c693c2ce142369bd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2842\",\"sale_id\":\"1626\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2392, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1625\",\"date\":\"2025-02-15 12:33:00\",\"reference_no\":\"SALE0731\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"c51644f656ac59c32a63fe0deac3fe1198fc16109c7ced5bec7eea0aa30c0977\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2841\",\"sale_id\":\"1625\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2393, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1624\",\"date\":\"2025-02-15 12:02:00\",\"reference_no\":\"SALE0730\",\"customer_id\":\"1288\",\"customer\":\"Francis Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"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\":\"ce109a6c47ca07387eb705554cb97d48702cd9ae2e10cda332ee4f3472b656c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2832\",\"sale_id\":\"1624\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2394, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1623\",\"date\":\"2025-02-15 11:59:00\",\"reference_no\":\"SALE0729\",\"customer_id\":\"1287\",\"customer\":\"Fredrick Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"39d83c9c257d972d54d84350f738ccbd0d09b03173036d7115bf85599d28869f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2831\",\"sale_id\":\"1623\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2395, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1632\",\"date\":\"2025-02-14 14:16:00\",\"reference_no\":\"SALE0738\",\"customer_id\":\"316\",\"customer\":\"John Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 14:17:28\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"716ad90d8fc193559c5fdd5cb609554818a640f859b87bebd258a24ec1a5add9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2850\",\"sale_id\":\"1632\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2396, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1631\",\"date\":\"2025-02-14 14:15:00\",\"reference_no\":\"SALE0737\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"910322118ea4a1b35419b5b3bbb7211cc0d040eca2d6bc0488760d021aecf1b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2848\",\"sale_id\":\"1631\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2397, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1622\",\"date\":\"2025-02-14 11:55:00\",\"reference_no\":\"SALE0728\",\"customer_id\":\"1286\",\"customer\":\"Ephantus Bundi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:03:08\",\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"40000.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\":\"68f8d1f572ad066759a535400b51714ca8b669bb2bc2e661c8517a93c9b130bb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2833\",\"sale_id\":\"1622\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2398, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1621\",\"date\":\"2025-02-14 11:51:00\",\"reference_no\":\"SALE0727\",\"customer_id\":\"1285\",\"customer\":\"Eliud Musyimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"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\":\"4ec071e71da48869577b1befbf772c1bbf2d46a74b71dfd912c00235ad250265\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2829\",\"sale_id\":\"1621\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2399, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1620\",\"date\":\"2025-02-14 11:46:00\",\"reference_no\":\"SALE0726\",\"customer_id\":\"1239\",\"customer\":\"consolata wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:03:26\",\"total_items\":\"2\",\"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\":\"9cd2067c795cfdedeefee0a5a50218e99b740e91f21554cdee288484e0eb50a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2834\",\"sale_id\":\"1620\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2400, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1619\",\"date\":\"2025-02-14 11:44:00\",\"reference_no\":\"SALE0725\",\"customer_id\":\"1284\",\"customer\":\"Edgar Bundi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:03:44\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"6b88bb9087427d26df21a46cbc07eaa44fb84099e37176027d02ecbfcf645beb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2835\",\"sale_id\":\"1619\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2401, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1618\",\"date\":\"2025-02-14 11:38:00\",\"reference_no\":\"SALE0724\",\"customer_id\":\"1283\",\"customer\":\"John Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:04:26\",\"total_items\":\"2\",\"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\":\"3d182a0c42f72754ca5da84d9903fcf72dcebb059afa20f87fa92a9451f0e6df\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2836\",\"sale_id\":\"1618\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2402, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1617\",\"date\":\"2025-02-14 11:35:00\",\"reference_no\":\"SALE0723\",\"customer_id\":\"1282\",\"customer\":\"Monicah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:04:45\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"380d19c532ed9c71c90c2ab310f899903a98202f0b10e01c6b69bc6d2c98a201\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2837\",\"sale_id\":\"1617\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2403, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1616\",\"date\":\"2025-02-14 11:31:00\",\"reference_no\":\"SALE0722\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:05:02\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"5000.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\":\"66e6aff45ed2b57cb708262f9f6258f69d1f5639589455e51d00f841f1133ca3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2838\",\"sale_id\":\"1616\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2404, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1607\",\"date\":\"2025-02-13 16:52:00\",\"reference_no\":\"SALE0713\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"6954b18aab48ee663b4cf45acef350895d24917910b0e4a9e89f9a26dafc5a31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2800\",\"sale_id\":\"1607\",\"product_id\":\"1111\",\"product_code\":\"42936668\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2405, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1606\",\"date\":\"2025-02-13 16:49:00\",\"reference_no\":\"SALE0712\",\"customer_id\":\"1274\",\"customer\":\"antony murimi ansal\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21850.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21850.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"11a22847d28239fb72a34220aa2676f76cc53603c6313298021750cebef5ed34\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2799\",\"sale_id\":\"1606\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2406, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1605\",\"date\":\"2025-02-13 16:46:00\",\"reference_no\":\"SALE0711\",\"customer_id\":\"1273\",\"customer\":\"Derrick Kangangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"16a130eda6d69d91c1f18af0e7113c8a93e472d291d7cd57cb2b79d51b961778\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2798\",\"sale_id\":\"1605\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2407, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1604\",\"date\":\"2025-02-13 16:43:00\",\"reference_no\":\"SALE0710\",\"customer_id\":\"1272\",\"customer\":\"Richard Hoho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1500.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\":\"d5d557ace7f4a61549c5a084c1924616cd3a5a667f0f8c21708fdde02e07fc84\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2797\",\"sale_id\":\"1604\",\"product_id\":\"1136\",\"product_code\":\"12719713\",\"product_name\":\"siri\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2408, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1603\",\"date\":\"2025-02-13 16:38:00\",\"reference_no\":\"SALE0709\",\"customer_id\":\"1185\",\"customer\":\"SIMON MUTHIKE\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"d9ffcb41d2b1da771ad4e75225515225b755f2392ef6ffdb2aee55c914a6f214\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2796\",\"sale_id\":\"1603\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2409, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1602\",\"date\":\"2025-02-13 16:36:00\",\"reference_no\":\"SALE0708\",\"customer_id\":\"1271\",\"customer\":\"Mary Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"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\":\"9cfd901121f455ca4bab0783f7040dfc980ba918557f29039fd2c848bc3830b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2795\",\"sale_id\":\"1602\",\"product_id\":\"1135\",\"product_code\":\"04508794\",\"product_name\":\"chillins\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2410, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1601\",\"date\":\"2025-02-13 16:31:00\",\"reference_no\":\"SALE0707\",\"customer_id\":\"1270\",\"customer\":\"Jane Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 16:34:03\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"500.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\":\"02ddd10cdc3a1842351bfff6ad791781ac2713152f7b0d02dfbd252dbf93f8da\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2794\",\"sale_id\":\"1601\",\"product_id\":\"1133\",\"product_code\":\"53798315\",\"product_name\":\"Thorn melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2411, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1600\",\"date\":\"2025-02-13 16:28:00\",\"reference_no\":\"SALE0706\",\"customer_id\":\"1269\",\"customer\":\"Stanley Wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"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\":\"3d10e561d2f278598fbfedf07d9604d088a1f73558a2bedb9c9b12f9f7a522ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2792\",\"sale_id\":\"1600\",\"product_id\":\"1111\",\"product_code\":\"42936668\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2412, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1599\",\"date\":\"2025-02-13 16:21:00\",\"reference_no\":\"SALE0705\",\"customer_id\":\"1268\",\"customer\":\"Samuel  Kangeche\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7215.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7215.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"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\":\"2ebeab7d378440b11c67e013f0b881ac7c1de56c91b72ffc2bc2d84aeac0833a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2791\",\"sale_id\":\"1599\",\"product_id\":\"1134\",\"product_code\":\"95195228\",\"product_name\":\"Long purple\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.1000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7215.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.1000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2413, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1598\",\"date\":\"2025-02-13 16:18:00\",\"reference_no\":\"SALE0704\",\"customer_id\":\"1159\",\"customer\":\"Anthhony murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12675.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12675.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"2400.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\":\"b306bd0385fc16a8bb7fce0ddf957d96a40fac67e16f229aa8ce4667b5593118\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2790\",\"sale_id\":\"1598\",\"product_id\":\"1122\",\"product_code\":\"75722675\",\"product_name\":\"Rionex propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12675.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2414, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1597\",\"date\":\"2025-02-13 16:15:00\",\"reference_no\":\"SALE0703\",\"customer_id\":\"1267\",\"customer\":\"Moses Njega\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"008e560952516fafd3598f77bfdedbbac3d92e35985faf6daf475b239f49b7de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2789\",\"sale_id\":\"1597\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2415, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1596\",\"date\":\"2025-02-13 16:12:00\",\"reference_no\":\"SALE0702\",\"customer_id\":\"341\",\"customer\":\"Joel  Kihohia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"3ef1f85864530d0154211cc73bd85072bd0db1faf1d765da04ad26da2db2e816\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2788\",\"sale_id\":\"1596\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2416, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1595\",\"date\":\"2025-02-13 16:11:00\",\"reference_no\":\"SALE0701\",\"customer_id\":\"1266\",\"customer\":\"Titus Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"500.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\":\"e835f12366c6f11fc2f2f5950ab74607f1160ed30808fc2f643166f3b2668a4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2787\",\"sale_id\":\"1595\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2417, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1594\",\"date\":\"2025-02-13 16:08:00\",\"reference_no\":\"SALE0700\",\"customer_id\":\"1265\",\"customer\":\"Samuel Kamau cucumber\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"975.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"975.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"975.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\":\"758d6781aa1d5ba85a0dc0de70e15100966d069f9e49bb3c2d5b541411b4ce6e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2786\",\"sale_id\":\"1594\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"975.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2418, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1593\",\"date\":\"2025-02-13 16:00:00\",\"reference_no\":\"SALE0699\",\"customer_id\":\"1263\",\"customer\":\"Wa Migwi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"8a889b8e0a3df760326637102825325ae413edced3f4edfcdbd056b75ed08d86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2785\",\"sale_id\":\"1593\",\"product_id\":\"1132\",\"product_code\":\"38049398\",\"product_name\":\"To 135\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2419, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1592\",\"date\":\"2025-02-13 15:53:00\",\"reference_no\":\"SALE0698\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"6f9a30aa7d6e3d7bb89781ce380b6d061991cb7017aa702b6a93ac9341d14295\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2784\",\"sale_id\":\"1592\",\"product_id\":\"1101\",\"product_code\":\"42441894\",\"product_name\":\"star 9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2420, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1591\",\"date\":\"2025-02-13 15:42:00\",\"reference_no\":\"SALE0697\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22165.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22165.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"34\",\"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\":\"725403bc59ee788e73e06998fd13a6e7d77d1b8d7bafd01709ee777b21f350f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2783\",\"sale_id\":\"1591\",\"product_id\":\"1131\",\"product_code\":\"09465263\",\"product_name\":\"max\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"34.1000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22165.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.1000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2421, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1590\",\"date\":\"2025-02-13 15:40:00\",\"reference_no\":\"SALE0696\",\"customer_id\":\"1155\",\"customer\":\"Duncan Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"c562b0bb1acaac2534f89c6800ddc4e058c09fee7a7e0cd24b48e4de3ad44ed7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2782\",\"sale_id\":\"1590\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2422, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1589\",\"date\":\"2025-02-13 15:28:00\",\"reference_no\":\"SALE0695\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"3000.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\":\"7289d5e9e2fe0e1f44c4f81863f7657bf6923162c3b17a32369c91b503738cee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2781\",\"sale_id\":\"1589\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2423, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1588\",\"date\":\"2025-02-13 15:26:00\",\"reference_no\":\"SALE0694\",\"customer_id\":\"1261\",\"customer\":\"Stanley Gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"4033041f6adc142382f0a85b36cba38abd8f845fbaeff970fcdb4a8934b5dc98\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2780\",\"sale_id\":\"1588\",\"product_id\":\"1112\",\"product_code\":\"94903006\",\"product_name\":\"harmony propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2424, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1587\",\"date\":\"2025-02-13 15:26:00\",\"reference_no\":\"SALE0693\",\"customer_id\":\"1260\",\"customer\":\"John mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"6000.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\":\"81ffc110a9ac2aaee14d232b35d7e94a29fcbef6b5cc473bb727fe69c86e2fdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2779\",\"sale_id\":\"1587\",\"product_id\":\"1129\",\"product_code\":\"44258810\",\"product_name\":\"kibostar propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2425, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1586\",\"date\":\"2025-02-13 15:22:00\",\"reference_no\":\"SALE0692\",\"customer_id\":\"1259\",\"customer\":\"wa emmah\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2600.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\":\"a2499406be7b37911d1b6fadfd38d5d69dae961c8655198d395fc6bb17eff0b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2778\",\"sale_id\":\"1586\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2426, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1585\",\"date\":\"2025-02-13 15:15:00\",\"reference_no\":\"SALE0691\",\"customer_id\":\"1258\",\"customer\":\"Raphael muiruri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"6500.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\":\"0c30686f82d9341fa14d0b93759d1f35318c9f04fef38f6afa7b793107f9ad1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2777\",\"sale_id\":\"1585\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2427, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1584\",\"date\":\"2025-02-13 15:15:00\",\"reference_no\":\"SALE0690\",\"customer_id\":\"788\",\"customer\":\"Paul\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"23274d83c4a1464ec854f0a57f1e3e5838bfa6b98db4336b40976c27e6443a89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2776\",\"sale_id\":\"1584\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2428, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1581\",\"date\":\"2025-02-13 14:56:00\",\"reference_no\":\"SALE0687\",\"customer_id\":\"1054\",\"customer\":\"Ibra\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"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\":\"08d31ddb814dbb938bddf4e131142eb1154996cc7926a567c50d64312e9e2b36\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2771\",\"sale_id\":\"1581\",\"product_id\":\"1127\",\"product_code\":\"33533655\",\"product_name\":\"mila propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2429, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1580\",\"date\":\"2025-02-13 14:56:00\",\"reference_no\":\"SALE0686\",\"customer_id\":\"1257\",\"customer\":\"Gatero\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10725.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10725.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"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\":\"44c86aa349e57822c27c1683af7336f4da964f2ef618c97f330ced9619aec91c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2770\",\"sale_id\":\"1580\",\"product_id\":\"1126\",\"product_code\":\"80226308\",\"product_name\":\"zara propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10725.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"16.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2430, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1579\",\"date\":\"2025-02-13 14:52:00\",\"reference_no\":\"SALE0685\",\"customer_id\":\"1256\",\"customer\":\"muriithi maringa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"ff1d67f9185b76c412be57b3751d97a7f8c5397bc178dade9236d2dccbb9b488\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2768\",\"sale_id\":\"1579\",\"product_id\":\"1125\",\"product_code\":\"72976730\",\"product_name\":\"victory red\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2769\",\"sale_id\":\"1579\",\"product_id\":\"1124\",\"product_code\":\"80606522\",\"product_name\":\"victory yellow\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2431, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1577\",\"date\":\"2025-02-13 14:46:00\",\"reference_no\":\"SALE0683\",\"customer_id\":\"1254\",\"customer\":\"Eugine waithaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"3900.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\":\"2cb9e0f4b775d9bcc82061edaa036266a03e3974624e43d7bf5fd820b55c02a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2765\",\"sale_id\":\"1577\",\"product_id\":\"1123\",\"product_code\":\"35427124\",\"product_name\":\"queen propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2432, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1615\",\"date\":\"2025-02-13 11:10:00\",\"reference_no\":\"SALE0721\",\"customer_id\":\"1281\",\"customer\":\"Paul ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:11:11\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"45018d1122cf973e65a9350d6888ede4c79b450c8b6ad939abf8320e127714c9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2813\",\"sale_id\":\"1615\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2433, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1614\",\"date\":\"2025-02-13 10:54:00\",\"reference_no\":\"SALE0720\",\"customer_id\":\"1280\",\"customer\":\"Nahashon wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:11:22\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"12800.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\":\"2995d22afc858501cd8c3ffa6168d0dadf4dd5e0c861138eb69e8d7b29dcd0ab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2814\",\"sale_id\":\"1614\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2815\",\"sale_id\":\"1614\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2434, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1613\",\"date\":\"2025-02-13 10:52:00\",\"reference_no\":\"SALE0719\",\"customer_id\":\"1279\",\"customer\":\"Pauline Gitika\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:11:32\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1800.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\":\"cce1c222de3e4aeb67b7de7a279f8cd849a5806a32226203991c1a4f951c7a45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2816\",\"sale_id\":\"1613\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2435, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1612\",\"date\":\"2025-02-13 10:48:00\",\"reference_no\":\"SALE0718\",\"customer_id\":\"1278\",\"customer\":\"Stephen muthee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:11:43\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"4000.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\":\"6d5444f67210e8b60dc07c54b4744c5bea24ba48378abc5c633d191b67c727d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2817\",\"sale_id\":\"1612\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2436, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1611\",\"date\":\"2025-02-13 10:46:00\",\"reference_no\":\"SALE0717\",\"customer_id\":\"1013\",\"customer\":\"leonard muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:11:53\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"500.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\":\"bf4aae3c7cae93f0a9eb9cd8ccb6820958681dc0b4a439bb96c752433bdd7002\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2818\",\"sale_id\":\"1611\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2437, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1610\",\"date\":\"2025-02-13 10:26:00\",\"reference_no\":\"SALE0716\",\"customer_id\":\"1277\",\"customer\":\"Festus musau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"58500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"58500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:12:03\",\"total_items\":\"32\",\"pos\":\"0\",\"paid\":\"57000.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\":\"0ff889abaff99689357e021d596c22faa9e3eadb6bea33a0220ffbfb4a31f934\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2819\",\"sale_id\":\"1610\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2820\",\"sale_id\":\"1610\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2821\",\"sale_id\":\"1610\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2438, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1609\",\"date\":\"2025-02-13 10:24:00\",\"reference_no\":\"SALE0715\",\"customer_id\":\"1276\",\"customer\":\"joseph kimani muthami\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:12:13\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"ab9ac6e41f228aa4f5fc12126e17bfd19af03bac81fb14d463c86c958f5fa3a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2822\",\"sale_id\":\"1609\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2439, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1608\",\"date\":\"2025-02-13 10:07:00\",\"reference_no\":\"SALE0714\",\"customer_id\":\"1275\",\"customer\":\"John mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"47500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"47500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 11:12:24\",\"total_items\":\"25\",\"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\":\"fcdacf4ab9a538539198b529a6aacc9ad50f28c1ca42a10382e86555b8f9138c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2823\",\"sale_id\":\"1608\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"47500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2440, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1576\",\"date\":\"2025-02-12 13:52:00\",\"reference_no\":\"SALE0682\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:54:45\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"ce37d30c085b9fec4d2beb6c98f2ababed003527af316fa9147640dbebf8edc6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2764\",\"sale_id\":\"1576\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2441, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1575\",\"date\":\"2025-02-12 13:50:00\",\"reference_no\":\"SALE0681\",\"customer_id\":\"1253\",\"customer\":\"james muthhii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"bd718ba230447a19354053cca238fc898f077bb922c3ee6ef2a10d6109489f45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2762\",\"sale_id\":\"1575\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2442, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1574\",\"date\":\"2025-02-12 13:48:00\",\"reference_no\":\"SALE0680\",\"customer_id\":\"1252\",\"customer\":\"benard muraguri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:49:11\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"300.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\":\"3b71c4769c13be0bfd8821cc5d12408803a16c0e02ab2b256b832d9a64214b3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2761\",\"sale_id\":\"1574\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2443, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1573\",\"date\":\"2025-02-12 13:46:00\",\"reference_no\":\"SALE0679\",\"customer_id\":\"1251\",\"customer\":\"peter karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"c77e0ed09ffaccb29ded72576459c6af789d1705d08e43c7e967900348030068\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2759\",\"sale_id\":\"1573\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2444, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1572\",\"date\":\"2025-02-12 13:41:00\",\"reference_no\":\"SALE0678\",\"customer_id\":\"1248\",\"customer\":\"lucy\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:42:03\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"cc22854768783b6db6851806281d3835214412ca03772af1055495e58d3a5674\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2756\",\"sale_id\":\"1572\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2757\",\"sale_id\":\"1572\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2445, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1571\",\"date\":\"2025-02-12 13:38:00\",\"reference_no\":\"SALE0677\",\"customer_id\":\"1249\",\"customer\":\"Aloise mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:42:13\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2800.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\":\"e7c5476d6205b80e75e658cc68ee9170a77344ef10db4f1c17aa00522379b637\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2758\",\"sale_id\":\"1571\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2446, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1570\",\"date\":\"2025-02-12 13:35:00\",\"reference_no\":\"SALE0676\",\"customer_id\":\"1114\",\"customer\":\"Danson wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:37:04\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"fedaacd1344b2a37dc16377f24e0a22f4e1c2678ef7ff0c0cecaf0e238af4247\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2752\",\"sale_id\":\"1570\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2447, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1569\",\"date\":\"2025-02-12 13:34:00\",\"reference_no\":\"SALE0675\",\"customer_id\":\"1248\",\"customer\":\"lucy\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"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\":\"ac35a6733a5e19e002da77b04a9262d66c6f5a57d7b5bba9c76ec6cdaa68c6e3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2747\",\"sale_id\":\"1569\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2748\",\"sale_id\":\"1569\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2448, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1568\",\"date\":\"2025-02-12 13:31:00\",\"reference_no\":\"SALE0674\",\"customer_id\":\"1128\",\"customer\":\"Jane  Catherine\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:32:17\",\"total_items\":\"30\",\"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\":\"5e58e3d2442b8a8b7a1d9cbe9377287ec03c6f0def9afc3d25c3cf40173e8610\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2746\",\"sale_id\":\"1568\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2449, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1567\",\"date\":\"2025-02-12 13:23:00\",\"reference_no\":\"SALE0673\",\"customer_id\":\"1247\",\"customer\":\"julius karriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:23:41\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"14000.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\":\"1e5a6f5572c6baf305e8445c7c3770b35d187f5a50bf3d4969e6d29666877933\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2740\",\"sale_id\":\"1567\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2450, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1630\",\"date\":\"2025-02-11 14:12:00\",\"reference_no\":\"SALE0736\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 14:13:42\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"9a2ebd6986a53991fc7060c9af1a1fc7ccb9680e242ecd5353aedb40655c067f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2847\",\"sale_id\":\"1630\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2451, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1629\",\"date\":\"2025-02-11 14:10:00\",\"reference_no\":\"SALE0735\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"1a9ae23e31f61013fb0298f96a26b8f1e4b995984a9a548ac1cafbfce11e7f81\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2845\",\"sale_id\":\"1629\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2452, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1565\",\"date\":\"2025-02-11 13:18:00\",\"reference_no\":\"SALE0671\",\"customer_id\":\"930\",\"customer\":\"Jeremiah Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:06\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"44c7052a69d09e5caaa83f01ba80562c1c4ca835253ba3f31145a2809c39d010\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2729\",\"sale_id\":\"1565\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2453, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1564\",\"date\":\"2025-02-11 13:17:00\",\"reference_no\":\"SALE0670\",\"customer_id\":\"1246\",\"customer\":\"Esther njoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"3dd5e60101fa09279570f55196a367159ec6d7defb113dfd60391a8dace9a54c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2726\",\"sale_id\":\"1564\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2727\",\"sale_id\":\"1564\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2454, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1563\",\"date\":\"2025-02-11 13:14:00\",\"reference_no\":\"SALE0669\",\"customer_id\":\"1245\",\"customer\":\"Lukas Gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:16\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d6e429f38f920c4841dfbf37f3d5ae1df30751151d8c48b2585698aba3d5dbd1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2730\",\"sale_id\":\"1563\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2455, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1562\",\"date\":\"2025-02-11 13:12:00\",\"reference_no\":\"SALE0668\",\"customer_id\":\"1244\",\"customer\":\"George eric\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:27\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"4000.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\":\"80500ae67c22a951b33302a00d96ab4585a4e2c02a7c7e93fe3d1bfda2334fe4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2731\",\"sale_id\":\"1562\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2456, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1558\",\"date\":\"2025-02-11 12:56:00\",\"reference_no\":\"SALE0664\",\"customer_id\":\"1241\",\"customer\":\"Rose\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:24:04\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1500.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\":\"16ea18a0f143f7f89d8fb24b7381d2237119a5f22134c3f84b70f7ec8c775215\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2741\",\"sale_id\":\"1558\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2457, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1557\",\"date\":\"2025-02-11 12:55:00\",\"reference_no\":\"SALE0663\",\"customer_id\":\"1240\",\"customer\":\"Jacob Nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:29:23\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"7900.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\":\"79f2bf976c0155c55016909acbf2f3c2f9b0b4836b59332150bbdeee1a25f076\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2744\",\"sale_id\":\"1557\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2458, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1556\",\"date\":\"2025-02-11 12:53:00\",\"reference_no\":\"SALE0662\",\"customer_id\":\"1239\",\"customer\":\"consolata wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:25:33\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"f64e1ec6e8af9ad58b6ff2feddb8e4caa98606dcd814f14230c044511600d99a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2742\",\"sale_id\":\"1556\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2459, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1555\",\"date\":\"2025-02-11 12:50:00\",\"reference_no\":\"SALE0661\",\"customer_id\":\"1238\",\"customer\":\"Mirriam Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:29:07\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2500.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\":\"568a87da9bd757b4874d081fc5de43e7f73dc18dc52f001c0b085bcffde05c1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2743\",\"sale_id\":\"1555\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2460, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1561\",\"date\":\"2025-02-11 11:40:00\",\"reference_no\":\"SALE0667\",\"customer_id\":\"1243\",\"customer\":\"Paul Gichangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:39\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"7000.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\":\"281ba93b38c5aaa877e69af0de59739607196e70f3b41c4bf8a7a08a2ea83e7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2732\",\"sale_id\":\"1561\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2461, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1560\",\"date\":\"2025-02-11 11:38:00\",\"reference_no\":\"SALE0666\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:47\",\"total_items\":\"8\",\"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\":\"2471808cff6b4bba3d83e0cb3827d7b71228a01485ca84f05146cdcf1a35e9fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2733\",\"sale_id\":\"1560\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2462, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1559\",\"date\":\"2025-02-11 09:45:00\",\"reference_no\":\"SALE0665\",\"customer_id\":\"1242\",\"customer\":\"Brian  Munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:19:56\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"1cb27bf67ec9c7886ef3d1bfb44b07db2138cd2fe21f48272e3878ae57bd702e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2734\",\"sale_id\":\"1559\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2463, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1578\",\"date\":\"2025-02-10 14:48:00\",\"reference_no\":\"SALE0684\",\"customer_id\":\"1255\",\"customer\":\"Benard muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 14:49:04\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"7150.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\":\"8089a2e41ea174c2fcba48fcecac75cc2913e8c4d7abb34e67ebd28fbbc382dc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2767\",\"sale_id\":\"1578\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2464, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1541\",\"date\":\"2025-02-10 13:08:00\",\"reference_no\":\"SALE0647\",\"customer_id\":\"1226\",\"customer\":\"david mugo mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"24\",\"pos\":\"0\",\"paid\":\"39000.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\":\"17960508ae8cdcaca49f905277a63cf944b0a7d2f31b9178fe8824ca19ea6da8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2684\",\"sale_id\":\"1541\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2465, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1539\",\"date\":\"2025-02-10 12:17:00\",\"reference_no\":\"SALE0645\",\"customer_id\":\"980\",\"customer\":\"edwin wakini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3900.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\":\"f34c8f2d9fed83b46d10450f3ffc3c65887cd4eed0f3648ddbec981b08a8c4be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2680\",\"sale_id\":\"1539\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2466, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1537\",\"date\":\"2025-02-10 11:32:00\",\"reference_no\":\"SALE0643\",\"customer_id\":\"1223\",\"customer\":\"Joseph Kimani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"1000.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\":\"081eb96d253455f1e92867f9c6f4f4efc5dd0c535aa5a98e22b33b4716db2992\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2677\",\"sale_id\":\"1537\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2467, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1552\",\"date\":\"2025-02-10 10:42:00\",\"reference_no\":\"SALE0658\",\"customer_id\":\"1236\",\"customer\":\"Hilary Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:42:41\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"943580251c1d8c9603236f0926ff1ad8fcd19aaa0d8f9d16577e6598b10eddda\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2698\",\"sale_id\":\"1552\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2468, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1551\",\"date\":\"2025-02-10 10:40:00\",\"reference_no\":\"SALE0657\",\"customer_id\":\"1235\",\"customer\":\"Johnson maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:42:51\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"f89692f1742fd7b57db2ef9d943aeed6f2509e2d3b36b83ec3781567c794f3cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2699\",\"sale_id\":\"1551\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2469, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1535\",\"date\":\"2025-02-10 10:33:00\",\"reference_no\":\"SALE0641\",\"customer_id\":\"1180\",\"customer\":\"John Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"15000.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\":\"8bbbfa609009217abe7fb74b7a5bff75d63acb9abb049c94437b2f59dfc9c68f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2673\",\"sale_id\":\"1535\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2470, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1550\",\"date\":\"2025-02-10 10:25:00\",\"reference_no\":\"SALE0656\",\"customer_id\":\"1234\",\"customer\":\"Isaac ndugu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:43:01\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"10000.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\":\"46d96d6875ac484675271a12fdb2b233ff72529f52b8d63a8ccebda6e2861623\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2700\",\"sale_id\":\"1550\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2471, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1549\",\"date\":\"2025-02-10 10:23:00\",\"reference_no\":\"SALE0655\",\"customer_id\":\"1233\",\"customer\":\"michael karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:43:10\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"10000.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\":\"ede931f296c9d72bdc5f14a8416e4c05bd9fab8100a5837e1dd3d0cf0208c5da\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2701\",\"sale_id\":\"1549\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2472, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1548\",\"date\":\"2025-02-10 10:21:00\",\"reference_no\":\"SALE0654\",\"customer_id\":\"1232\",\"customer\":\"David mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:43:30\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"5000.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\":\"a73be68d5245a956f30d1a68f1cf7588feb9d4e4dadcdc763aa054d36b4e77ab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2702\",\"sale_id\":\"1548\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2473, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1547\",\"date\":\"2025-02-10 10:16:00\",\"reference_no\":\"SALE0653\",\"customer_id\":\"1073\",\"customer\":\"David Maai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:44:19\",\"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\":\"bd8f556b55dba1fc2c8ede4140956bba6c6a2d3e3121b36f6e758b215aa7851f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2703\",\"sale_id\":\"1547\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2474, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1546\",\"date\":\"2025-02-10 10:08:00\",\"reference_no\":\"SALE0652\",\"customer_id\":\"1231\",\"customer\":\"Samuel Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:44:36\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4200.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\":\"95942d4941ad9457c11add60cc2175595f1a30eba8fd127f8ffa1d9d2f41cc5c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2704\",\"sale_id\":\"1546\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2475, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1545\",\"date\":\"2025-02-10 10:05:00\",\"reference_no\":\"SALE0651\",\"customer_id\":\"1230\",\"customer\":\"Muthike kinara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"191000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"191000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:44:49\",\"total_items\":\"115\",\"pos\":\"0\",\"paid\":\"50000.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\":\"84e5570cfda7fa1c75f8231b5598d367a46aa1a1387d54024cb31843f9d1e681\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2705\",\"sale_id\":\"1545\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2706\",\"sale_id\":\"1545\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"93.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"176700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"93.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2476, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1544\",\"date\":\"2025-02-10 10:03:00\",\"reference_no\":\"SALE0650\",\"customer_id\":\"1229\",\"customer\":\"Andrew kiragu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:45:00\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5000.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\":\"2bb57a1d54800453246f28ed8d238fd5463836f9c1e58e807dafe06e285acccf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2707\",\"sale_id\":\"1544\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2477, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1543\",\"date\":\"2025-02-10 10:00:00\",\"reference_no\":\"SALE0649\",\"customer_id\":\"1228\",\"customer\":\"john murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:45:10\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"700.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\":\"abd6162306a5441d92eedb9801c2857550bce23efc6c0470234fd97c61fce781\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2708\",\"sale_id\":\"1543\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2478, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1542\",\"date\":\"2025-02-10 09:59:00\",\"reference_no\":\"SALE0648\",\"customer_id\":\"1227\",\"customer\":\"Josphat ndai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 10:45:21\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2500.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\":\"5c02b72b02645d17a6f0ac2b937bf0650bb59a4a7bcaede22f194f989878c5da\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2709\",\"sale_id\":\"1542\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2479, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1533\",\"date\":\"2025-02-08 13:18:00\",\"reference_no\":\"SALE0639\",\"customer_id\":\"1221\",\"customer\":\"Margret Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5000.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\":\"cf9a923d8412b7cd44d008d7a567fd2b3ed7585c50c291e1b2d05a7f505db27c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2669\",\"sale_id\":\"1533\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2480, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1534\",\"date\":\"2025-02-07 13:22:00\",\"reference_no\":\"SALE0640\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-08 13:23:42\",\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"57000.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\":\"ecf4772b86f67ca19978b61e71d5a31ab25206ab471a3f02ee99f54b90d52794\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2671\",\"sale_id\":\"1534\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2481, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1532\",\"date\":\"2025-02-07 13:15:00\",\"reference_no\":\"SALE0638\",\"customer_id\":\"1220\",\"customer\":\"Kimathi Kimonte\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"5000.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\":\"4f9f2f684e676b5e50d09c29de9bfe8c0c6bbb0e9d4d0a5cb1f59ea5e2cfbdd6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2668\",\"sale_id\":\"1532\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2482, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1531\",\"date\":\"2025-02-07 13:13:00\",\"reference_no\":\"SALE0637\",\"customer_id\":\"497\",\"customer\":\"George Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"9687d3b2308cdca973cb0fb7d9c003a29b61b8af5d2cefedd70b0f5096e41140\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2667\",\"sale_id\":\"1531\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2483, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1530\",\"date\":\"2025-02-07 13:11:00\",\"reference_no\":\"SALE0636\",\"customer_id\":\"192\",\"customer\":\"Joseph Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"bf63aac9dcd710d53b26f76613394101e1d5acd6064b2e461d5a42f3fe3e41ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2666\",\"sale_id\":\"1530\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2484, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1529\",\"date\":\"2025-02-07 13:08:00\",\"reference_no\":\"SALE0635\",\"customer_id\":\"165\",\"customer\":\"peter kiara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"10000.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\":\"e4f17cb213f1190e93245734bb2549408bd7d089195c2e779edf14f97cfd2520\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2665\",\"sale_id\":\"1529\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2485, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1528\",\"date\":\"2025-02-07 13:05:00\",\"reference_no\":\"SALE0634\",\"customer_id\":\"1219\",\"customer\":\"James Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"7000.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\":\"da525ad90a9a92f38d9c109fb12a9994926db22d874710c9d518fad074c0a82c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2664\",\"sale_id\":\"1528\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2486, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1527\",\"date\":\"2025-02-07 13:02:00\",\"reference_no\":\"SALE0633\",\"customer_id\":\"1218\",\"customer\":\"Richard Mnuhe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"5e2dc972d07b1a11453150a630ca6c1bde366d476aaf423426ec75e20d132b89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2663\",\"sale_id\":\"1527\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2487, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1526\",\"date\":\"2025-02-07 12:58:00\",\"reference_no\":\"SALE0632\",\"customer_id\":\"1217\",\"customer\":\"Alfred gathumbi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4000.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\":\"e05346d72712d337664a2d2e0e1bd522e43e5febfbbf7e119d893ffbf886de6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2662\",\"sale_id\":\"1526\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2488, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1525\",\"date\":\"2025-02-07 12:54:00\",\"reference_no\":\"SALE0631\",\"customer_id\":\"1216\",\"customer\":\"johnson kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"41800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"41800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-08 12:56:06\",\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"2000.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\":\"13ad36fbd6745eeed434140c8b8a4b683ce3a14ebef81f31aadabf967f398dc2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2661\",\"sale_id\":\"1525\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"41800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2489, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1524\",\"date\":\"2025-02-06 10:36:00\",\"reference_no\":\"SALE0630\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:37:26\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"4befee3f3f3b0411a2843ac8b3dbd55bf362995c0e62e7a443b46bb90e5efde3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2659\",\"sale_id\":\"1524\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2490, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1523\",\"date\":\"2025-02-06 10:33:00\",\"reference_no\":\"SALE0629\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:34:31\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"350.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\":\"37b1948631617bb7bf817b5f662e39ba359dcfc638e66a738c6a6b8f5574a285\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2657\",\"sale_id\":\"1523\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2491, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1522\",\"date\":\"2025-02-06 10:28:00\",\"reference_no\":\"SALE0628\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:28:33\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"031386e61365a84e6c6184e95124deb2339d3116f36b40be2eea699337ebd2d8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2655\",\"sale_id\":\"1522\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2492, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1521\",\"date\":\"2025-02-06 10:24:00\",\"reference_no\":\"SALE0627\",\"customer_id\":\"1215\",\"customer\":\"Anthony mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:25:08\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1000.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\":\"e8a07686b99d7ed27d33c012c9b8e017ec059c093988e01f8c76026b72274aa7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2643\",\"sale_id\":\"1521\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2493, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1520\",\"date\":\"2025-02-06 10:23:00\",\"reference_no\":\"SALE0626\",\"customer_id\":\"1214\",\"customer\":\"Beth wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:25:20\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"c0692f32267330a7fbdb87834ea757fa3e881810161305f102a2089b324cfe54\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2644\",\"sale_id\":\"1520\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2494, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1519\",\"date\":\"2025-02-06 10:21:00\",\"reference_no\":\"SALE0625\",\"customer_id\":\"1213\",\"customer\":\"Geoffrey wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:25:31\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2200.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\":\"9289acae672a3947ee600acdf18c03fcf53020d532b2ef0ff106de390d8ede75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2645\",\"sale_id\":\"1519\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2495, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1518\",\"date\":\"2025-02-06 10:19:00\",\"reference_no\":\"SALE0624\",\"customer_id\":\"1212\",\"customer\":\"William murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:25:43\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"434a3320fd4fa705b051025717b0cb2d7027c3fdf44c4a63c1e92c067a7a6ab8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2646\",\"sale_id\":\"1518\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2647\",\"sale_id\":\"1518\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2496, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1517\",\"date\":\"2025-02-06 10:17:00\",\"reference_no\":\"SALE0623\",\"customer_id\":\"1211\",\"customer\":\"rose kiongo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:25:59\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2000.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\":\"d18822932ea7f7b3e7a3053135b93d9ea71bd625ccef31abc9850aab789ee726\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2648\",\"sale_id\":\"1517\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2497, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1516\",\"date\":\"2025-02-06 10:16:00\",\"reference_no\":\"SALE0622\",\"customer_id\":\"1210\",\"customer\":\"charles wamugunda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:26:09\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2000.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\":\"4b9defd6b3110aa319e78526dedd7e80acd83520a03894d93bff44675f85f1fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2649\",\"sale_id\":\"1516\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2498, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1515\",\"date\":\"2025-02-06 10:14:00\",\"reference_no\":\"SALE0621\",\"customer_id\":\"1209\",\"customer\":\"Rahab wairimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:26:22\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"0a96f1006fdaff44d1900ae6fd4d45892345fc55eb27dacc9a95b169bdae00fc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2650\",\"sale_id\":\"1515\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2499, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1514\",\"date\":\"2025-02-06 10:11:00\",\"reference_no\":\"SALE0620\",\"customer_id\":\"1208\",\"customer\":\"Joseph muriga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:26:35\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1500.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\":\"5634fc0d06edc4e89786dcc9b899a6a7e344c8321716f8c234dd7b20aba0d407\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2651\",\"sale_id\":\"1514\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2500, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1513\",\"date\":\"2025-02-06 10:09:00\",\"reference_no\":\"SALE0619\",\"customer_id\":\"822\",\"customer\":\"John\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:26:46\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"15000.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\":\"e3580b288beda7ec534175e6c1ee9138726cd678f5d0e35bb1cd8a1f951a4b07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2652\",\"sale_id\":\"1513\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2501, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1512\",\"date\":\"2025-02-06 10:07:00\",\"reference_no\":\"SALE0618\",\"customer_id\":\"1207\",\"customer\":\"Susan wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-07 10:26:56\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1000.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\":\"5762e5c581ef8b33aae3f502858df85a87e3127cf17fb3723e2bb4cee92df9ab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2653\",\"sale_id\":\"1512\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2502, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1511\",\"date\":\"2025-02-05 14:55:00\",\"reference_no\":\"SALE0617\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 15:08:28\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"9e158bab73439731a65bd17310d083fe9457cc72b9ed41643eeed82799349a5c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2631\",\"sale_id\":\"1511\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2503, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1510\",\"date\":\"2025-02-05 14:24:00\",\"reference_no\":\"SALE0616\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:51:49\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2000.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\":\"8fd521ade23cf3dcd830e82433bc3169b1c740f37ffcd7a7938a9c0de2486582\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2616\",\"sale_id\":\"1510\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2504, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1509\",\"date\":\"2025-02-05 14:22:00\",\"reference_no\":\"SALE0615\",\"customer_id\":\"1205\",\"customer\":\"Peter muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:00\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"cc7b282eaf0c18c2f2e1e2bb474f3fe90a20cd6e1e364e299375bd2355bc34cd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2617\",\"sale_id\":\"1509\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2505, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1508\",\"date\":\"2025-02-05 14:20:00\",\"reference_no\":\"SALE0614\",\"customer_id\":\"1204\",\"customer\":\"Ephraim Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:11\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2000.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\":\"1c90fcd117007617d958e3cc94b15489003e04a1d7db6dcd3a2be68af579fbb0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2618\",\"sale_id\":\"1508\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2619\",\"sale_id\":\"1508\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2506, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1507\",\"date\":\"2025-02-05 14:16:00\",\"reference_no\":\"SALE0613\",\"customer_id\":\"1203\",\"customer\":\"Reubenson murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:21\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3300.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\":\"1747009d02e268eaa85d59c22c7fb2888cd0fa7df96596b19173b809ba8572c2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2620\",\"sale_id\":\"1507\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2507, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1506\",\"date\":\"2025-02-05 08:43:00\",\"reference_no\":\"SALE0612\",\"customer_id\":\"1202\",\"customer\":\"kennedy njogu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:33\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"be226a6f2f2dd55cf8ac6eff22523504e55242bc81f2ddafa9d36f347d878609\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2621\",\"sale_id\":\"1506\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2508, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1505\",\"date\":\"2025-02-05 08:41:00\",\"reference_no\":\"SALE0611\",\"customer_id\":\"1201\",\"customer\":\"njeru francis\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:42\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"1000.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\":\"ffa62abbd13523ead26418585d939b34d002c2759cc09105825d29cf38a07477\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2622\",\"sale_id\":\"1505\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2509, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1504\",\"date\":\"2025-02-05 08:39:00\",\"reference_no\":\"SALE0610\",\"customer_id\":\"1200\",\"customer\":\"Alice wairiuko\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:52:52\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"5000.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\":\"66c07d7cf84fad90b1441a802440f6ff8292d1de8cd1840d41c0ef45fa755e8d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2623\",\"sale_id\":\"1504\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2510, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1503\",\"date\":\"2025-02-05 08:37:00\",\"reference_no\":\"SALE0609\",\"customer_id\":\"1199\",\"customer\":\"Janet Beth\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 08:47:31\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"3000.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\":\"a715cb30280ba6d0843553c3ec7341b6975974c4d7d8ca03c5e9074bc50478ae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2718\",\"sale_id\":\"1503\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2719\",\"sale_id\":\"1503\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2511, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1502\",\"date\":\"2025-02-05 08:35:00\",\"reference_no\":\"SALE0608\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:53:20\",\"total_items\":\"29\",\"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\":\"d9045bf730aa6215db0397c8184a3e2ba975326e71cdf80aece7a921fb3c485d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2625\",\"sale_id\":\"1502\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2626\",\"sale_id\":\"1502\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2627\",\"sale_id\":\"1502\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2512, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1501\",\"date\":\"2025-02-05 08:34:00\",\"reference_no\":\"SALE0607\",\"customer_id\":\"1198\",\"customer\":\"John Warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:53:31\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"6000.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\":\"bbbe6d993cd9e3f376a9b099d7931915314c396b58c865127d2dcdded4adc726\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2628\",\"sale_id\":\"1501\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2513, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1500\",\"date\":\"2025-02-05 08:28:00\",\"reference_no\":\"SALE0606\",\"customer_id\":\"1197\",\"customer\":\"Jeremian Mubena\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-06 14:53:40\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"9d55d1c4b1a58559d4f4227dbc7d4c126b8edff94565515ef3e70cd417e04df3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2629\",\"sale_id\":\"1500\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2514, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1499\",\"date\":\"2025-02-04 17:15:00\",\"reference_no\":\"SALE0605\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"97.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"97.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"97.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\":\"425bba8b9c845e0dbb5c34ea2e853361f89a35e7da83e715871180868aea3d2e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2600\",\"sale_id\":\"1499\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.0600\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.0600\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2601\",\"sale_id\":\"1499\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.0700\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"49.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.0700\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2515, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1498\",\"date\":\"2025-02-04 17:12:00\",\"reference_no\":\"SALE0604\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"201.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"201.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"201.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\":\"802e796d7c42714b7eb722c34507c7c615ed77203b41d431544ed8489a39b0dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2597\",\"sale_id\":\"1498\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.0600\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.0600\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2598\",\"sale_id\":\"1498\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.1500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"105.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.1500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2599\",\"sale_id\":\"1498\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.0630\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.0600\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2516, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1497\",\"date\":\"2025-02-04 17:11:00\",\"reference_no\":\"SALE0603\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"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\":\"23acd2d0c1faaa7b699a36d5f7015032b7a448ad8442f1f6f9e97aef4df8214d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2596\",\"sale_id\":\"1497\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2517, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1496\",\"date\":\"2025-02-04 17:10:00\",\"reference_no\":\"SALE0602\",\"customer_id\":\"1196\",\"customer\":\"Florence\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"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\":\"df8d00132d10925ba44eeef68ac34e74dad5076202e27b6dcd79b288682d0777\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2595\",\"sale_id\":\"1496\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2518, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1495\",\"date\":\"2025-02-04 16:44:00\",\"reference_no\":\"SALE0601\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"bf9b5ca82ce693ae2f000eb5e9450d8348f8abd118fca2d70d99bdfa4b53091f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2594\",\"sale_id\":\"1495\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2519, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1494\",\"date\":\"2025-02-04 16:22:00\",\"reference_no\":\"SALE0600\",\"customer_id\":\"1195\",\"customer\":\"Hemry Kaguuru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"33bd88e349076c818b8c44af298c21f77af8000d93b839fede28abef930e8679\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2593\",\"sale_id\":\"1494\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2520, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1493\",\"date\":\"2025-02-04 16:20:00\",\"reference_no\":\"SALE0599\",\"customer_id\":\"1194\",\"customer\":\"John ngari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"5000.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\":\"11cb9eb70969d3bb985a4e573ed3eb2bc27d36dc712eddc56b6b41ee3e365537\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2592\",\"sale_id\":\"1493\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2521, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1492\",\"date\":\"2025-02-04 16:18:00\",\"reference_no\":\"SALE0598\",\"customer_id\":\"1193\",\"customer\":\"Moses jeff\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2000.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\":\"c5fd75eb3ccbe38682193aa2a4f449bedc71d3c0617ea5c66a91e5121d7f581b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2591\",\"sale_id\":\"1492\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2522, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1491\",\"date\":\"2025-02-04 16:07:00\",\"reference_no\":\"SALE0597\",\"customer_id\":\"1192\",\"customer\":\"martin kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"650e00713fef61599dccc0deda97b3d4bfecb9c9d8c8e8213284e063d75a1a9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2587\",\"sale_id\":\"1491\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2523, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1490\",\"date\":\"2025-02-04 16:06:00\",\"reference_no\":\"SALE0596\",\"customer_id\":\"1191\",\"customer\":\"James githiji\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"7000.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\":\"1431dd7797a6832a0af93e42100fd8e1930faae0d47fbcaee9df19338328aa65\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2586\",\"sale_id\":\"1490\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2524, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1489\",\"date\":\"2025-02-04 16:05:00\",\"reference_no\":\"SALE0595\",\"customer_id\":\"1190\",\"customer\":\"kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"5000.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\":\"f8a7bd9b4e2637209ccf9b5787f9f45e68498276554cb5a24bda2deb3435b655\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2584\",\"sale_id\":\"1489\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2585\",\"sale_id\":\"1489\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2525, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1488\",\"date\":\"2025-02-04 16:03:00\",\"reference_no\":\"SALE0594\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3400.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\":\"13262a45b4fceddbd06c68ac52386b28696859e8140e3b35920656f7d8063c10\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2582\",\"sale_id\":\"1488\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2583\",\"sale_id\":\"1488\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2526, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1487\",\"date\":\"2025-02-04 16:02:00\",\"reference_no\":\"SALE0593\",\"customer_id\":\"1189\",\"customer\":\"joseph murathii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4300.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\":\"ce1aa0c556168f6b517e4b86647d8df36b6ce1ce555a8ff9f5c59b897f0bf647\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2581\",\"sale_id\":\"1487\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2527, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1486\",\"date\":\"2025-02-04 16:00:00\",\"reference_no\":\"SALE0592\",\"customer_id\":\"1188\",\"customer\":\"joseph mwangi riakanau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"10000.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\":\"fab29b9a955556ba254be8a15e1a68b6b8cd41f6dc1f897f65592885b665fb21\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2580\",\"sale_id\":\"1486\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2528, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1485\",\"date\":\"2025-02-04 15:58:00\",\"reference_no\":\"SALE0591\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"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\":\"b8aa80b53af749e7859c2b19dec8508f795745ac5b7b8c123d848ebfe27c0c71\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2579\",\"sale_id\":\"1485\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2529, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1484\",\"date\":\"2025-02-04 15:57:00\",\"reference_no\":\"SALE0590\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"150\",\"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\":\"d7709d794cb679d3d82784841000a129803493ef5ecf86e721492e83fb3bf7b4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2578\",\"sale_id\":\"1484\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"150.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2530, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1483\",\"date\":\"2025-02-04 15:56:00\",\"reference_no\":\"SALE0589\",\"customer_id\":\"1187\",\"customer\":\"james munenr\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 16:11:01\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"56705ab05172850d1074ec6ebf9a7ed91c950f411c99cfc3af62c80c328de2bb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2588\",\"sale_id\":\"1483\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2589\",\"sale_id\":\"1483\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2590\",\"sale_id\":\"1483\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2531, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1553\",\"date\":\"2025-02-04 11:03:00\",\"reference_no\":\"SALE0659\",\"customer_id\":\"1237\",\"customer\":\"Elijah (james wachira)\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 11:05:25\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"34200.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\":\"708e273d31bffd68f90b9e421c3e27d868101d3d3365b7565f6dec727670ce72\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2711\",\"sale_id\":\"1553\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2532, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1482\",\"date\":\"2025-02-04 09:48:00\",\"reference_no\":\"SALE0588\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"120000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"12000\",\"total_discount\":\"12000.0000\",\"order_discount\":\"12000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"108000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 09:51:22\",\"total_items\":\"120\",\"pos\":\"0\",\"paid\":\"108000.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\":\"1407f1dd27a8f9a51334e214dd414747c57a40882c55da82b15c78b41615dff5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2573\",\"sale_id\":\"1482\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"120.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"120.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2533, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1471\",\"date\":\"2025-02-03 17:07:00\",\"reference_no\":\"SALE0577\",\"customer_id\":\"1178\",\"customer\":\"James muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4875.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\":\"ca60220eaec84f6d4537555ea31a2fcfb22f5b95d7a9e36b1ddf7588804ab8a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2546\",\"sale_id\":\"1471\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2534, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1470\",\"date\":\"2025-02-03 16:39:00\",\"reference_no\":\"SALE0576\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"368.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"368.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"368.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\":\"41002a2c0885952596d9e6646e12bf3113e61cf5f14d7bb570a8759c50b94978\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2543\",\"sale_id\":\"1470\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.2400\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"168.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2400\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2544\",\"sale_id\":\"1470\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.2500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2535, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1469\",\"date\":\"2025-02-03 16:25:00\",\"reference_no\":\"SALE0575\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2500.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\":\"4e63929c510dc80799713377a09d424d8ffac973b32da962b1be1ac7fd8b0cbe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2542\",\"sale_id\":\"1469\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2536, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1468\",\"date\":\"2025-02-03 16:24:00\",\"reference_no\":\"SALE0574\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"2fa9396c6e46d3a0ceb19700d537b5e8919146523ac114625033a8248e549d35\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2541\",\"sale_id\":\"1468\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2537, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1467\",\"date\":\"2025-02-03 16:23:00\",\"reference_no\":\"SALE0573\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"8691cff82fbb46195af8abc9444eaec9d0f1bdcbf2ab6ecdefa03a4834093005\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2540\",\"sale_id\":\"1467\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2538, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1466\",\"date\":\"2025-02-03 16:21:00\",\"reference_no\":\"SALE0572\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"399.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"399.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"399.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\":\"1de35cf9465ec0790be117aa1750e352ac34fd346cbe36476aa5c3ede69cfdaa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2539\",\"sale_id\":\"1466\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.2100\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"399.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2100\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2539, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1465\",\"date\":\"2025-02-03 16:20:00\",\"reference_no\":\"SALE0571\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"807589b597419316d634c9c13c46397bd71d2bb5319fe57a86cb36ca9b6ae556\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2538\",\"sale_id\":\"1465\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.2500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.2500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2540, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1464\",\"date\":\"2025-02-03 16:19:00\",\"reference_no\":\"SALE0570\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"e89c5ff95f0e16181be82b5ad1c1e65e3a35f246a5cc690bcde8ad6819b4550c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2536\",\"sale_id\":\"1464\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2537\",\"sale_id\":\"1464\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2541, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1463\",\"date\":\"2025-02-03 15:44:00\",\"reference_no\":\"SALE0569\",\"customer_id\":\"1005\",\"customer\":\"john mucebio\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3000.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\":\"375de3f2668aec99fbcae96ebee61099de50d02b4343767c6ecef98c9a94d15c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2533\",\"sale_id\":\"1463\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2542, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1462\",\"date\":\"2025-02-03 15:43:00\",\"reference_no\":\"SALE0568\",\"customer_id\":\"1177\",\"customer\":\"Edward Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"26\",\"pos\":\"0\",\"paid\":\"22500.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\":\"8c30958143bd006fb417af02c096c6882484bab04e0ceeb390938c783c2a9485\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2532\",\"sale_id\":\"1462\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"49400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"26.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2543, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1461\",\"date\":\"2025-02-03 15:36:00\",\"reference_no\":\"SALE0567\",\"customer_id\":\"1176\",\"customer\":\"Nazarius Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"133000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"133000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"50000.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\":\"9d87b25a39f1871814500caa496945e2c989e69ce6d56b2bf6a9b2e64e76e3fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2531\",\"sale_id\":\"1461\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"133000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2544, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1460\",\"date\":\"2025-02-03 15:25:00\",\"reference_no\":\"SALE0566\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"800.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\":\"5b276c3fe6d5bd0d6277913e0303787b7f83d448f867bd1cd9c93b5859dac7f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2530\",\"sale_id\":\"1460\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2545, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1459\",\"date\":\"2025-02-03 15:09:00\",\"reference_no\":\"SALE0565\",\"customer_id\":\"1175\",\"customer\":\"zachary kithaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"95000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"95000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"50\",\"pos\":\"0\",\"paid\":\"39000.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\":\"8a5d601945d5c4911ebd18432a6cab8fef821a0f38b51f8defb4a0934d585de6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2528\",\"sale_id\":\"1459\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"95000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"50.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2546, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1458\",\"date\":\"2025-02-03 14:47:00\",\"reference_no\":\"SALE0564\",\"customer_id\":\"1174\",\"customer\":\"Gideon kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"9576e043eb3e37c72e5e722c17da44c2adfef29a29d0eea8aca401bf56481345\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2526\",\"sale_id\":\"1458\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2547, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1457\",\"date\":\"2025-02-03 14:44:00\",\"reference_no\":\"SALE0563\",\"customer_id\":\"809\",\"customer\":\"Michael\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"47500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"47500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"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\":\"7edcc7bdc5e9694a306b51cc50f3d6c3d996a086c2b2935552d21cc3935b43b2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2525\",\"sale_id\":\"1457\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"47500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2548, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1456\",\"date\":\"2025-02-03 14:42:00\",\"reference_no\":\"SALE0562\",\"customer_id\":\"972\",\"customer\":\"joseph murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"42800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"42800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"32\",\"pos\":\"0\",\"paid\":\"7000.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\":\"b12b498bb18c0ec72feff487f2f00d23f79f46dc428d1193b7ee753ae3b77430\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2523\",\"sale_id\":\"1456\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2524\",\"sale_id\":\"1456\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2549, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1455\",\"date\":\"2025-02-03 14:40:00\",\"reference_no\":\"SALE0561\",\"customer_id\":\"1173\",\"customer\":\"Joseph Irungu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4000.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\":\"ec4911f1aa88783f253a411c96bba6fb839864782cf29f690761c297e0acdd0f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2522\",\"sale_id\":\"1455\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2550, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1454\",\"date\":\"2025-02-03 14:39:00\",\"reference_no\":\"SALE0560\",\"customer_id\":\"1172\",\"customer\":\"francis maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"300.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\":\"625b07835481112833533f56c763ea2ebeb8e10fe886dc2ec3dd1f409d5c048b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2521\",\"sale_id\":\"1454\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2551, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1453\",\"date\":\"2025-02-03 14:37:00\",\"reference_no\":\"SALE0559\",\"customer_id\":\"1171\",\"customer\":\"moses\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"14000.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\":\"3d11e53c3ebd2f97440465e30755583eab5591cdc5cfa20b6fb1c3410ad1e794\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2520\",\"sale_id\":\"1453\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2552, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1452\",\"date\":\"2025-02-03 14:35:00\",\"reference_no\":\"SALE0558\",\"customer_id\":\"1170\",\"customer\":\"anthony muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"39900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"39900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"21\",\"pos\":\"0\",\"paid\":\"33000.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\":\"4af8e224aa57d4900bb607debc83ca9d6ca4c0f4504632f7313fb50168bb5c3d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2519\",\"sale_id\":\"1452\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"39900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"21.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2553, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1451\",\"date\":\"2025-02-03 14:34:00\",\"reference_no\":\"SALE0557\",\"customer_id\":\"1169\",\"customer\":\"Pauline maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"5000.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\":\"2322e19108d981b77eb478f462e107cee4c8769ea33adeab7836b9456544e0aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2518\",\"sale_id\":\"1451\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2554, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1450\",\"date\":\"2025-02-03 14:32:00\",\"reference_no\":\"SALE0556\",\"customer_id\":\"1168\",\"customer\":\"Macharia safania\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"72\",\"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\":\"3453c21a27306eda981e4e9572b1985bfd6a4ff1a775f3cc229408a20e80e542\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2517\",\"sale_id\":\"1450\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"72.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"72.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2555, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1449\",\"date\":\"2025-02-03 14:30:00\",\"reference_no\":\"SALE0555\",\"customer_id\":\"1167\",\"customer\":\"samuel mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"1000.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\":\"4970a597a6cae6409e488d646df1928b72d813a595b4b7759390789d5e91e86d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2516\",\"sale_id\":\"1449\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2556, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1448\",\"date\":\"2025-02-03 14:29:00\",\"reference_no\":\"SALE0554\",\"customer_id\":\"1166\",\"customer\":\"maringa samuel\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2000.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\":\"4dcb82ed7826015fb939a05507dfc62e809d5e24269a27f2bcfcc24001df5a4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2515\",\"sale_id\":\"1448\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2557, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1447\",\"date\":\"2025-02-03 14:27:00\",\"reference_no\":\"SALE0553\",\"customer_id\":\"1165\",\"customer\":\"arthur munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4500.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\":\"be19e3ab63ae05e1a116faea79bec724f6c050dfe3f7d55b2214bfc8bf2c775b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2513\",\"sale_id\":\"1447\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2514\",\"sale_id\":\"1447\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2558, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1480\",\"date\":\"2025-02-01 09:03:00\",\"reference_no\":\"SALE0586\",\"customer_id\":\"1185\",\"customer\":\"SIMON MUTHIKE\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 09:03:46\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1000.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\":\"63a457892277f3702e86436d97d8b07c199a65f79d89e53eeb85b07b6132123f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2569\",\"sale_id\":\"1480\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2559, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1479\",\"date\":\"2025-02-01 08:52:00\",\"reference_no\":\"SALE0585\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"995.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"995.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:58:56\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"995.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\":\"f806046bdb701e5cff74fe5dbc518f60b4bd8cdb4f2b2c99e84660406de83ccb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2565\",\"sale_id\":\"1479\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.8500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"595.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.8500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2566\",\"sale_id\":\"1479\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.2500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2567\",\"sale_id\":\"1479\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.2500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2560, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1478\",\"date\":\"2025-02-01 08:44:00\",\"reference_no\":\"SALE0584\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:46:41\",\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"38000.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\":\"7f3bc37351fd3cdb6e4f3639d68e51d3c7cfde2a89f82b546a8bc5f942c8e813\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2555\",\"sale_id\":\"1478\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2561, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1477\",\"date\":\"2025-02-01 08:43:00\",\"reference_no\":\"SALE0583\",\"customer_id\":\"1184\",\"customer\":\"john maria\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:46:50\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"4885df21d1835ca7d006d633488fe930afbbe06bd1718c46f6b65f2062ecefb4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2556\",\"sale_id\":\"1477\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2562, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1476\",\"date\":\"2025-02-01 08:40:00\",\"reference_no\":\"SALE0582\",\"customer_id\":\"1183\",\"customer\":\"Benjamin  Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:46:59\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"117540f96f4500abbb2b4a82af040617ad9fbfaafe3b7145b71ced32f48ccbb9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2557\",\"sale_id\":\"1476\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2563, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1475\",\"date\":\"2025-02-01 08:39:00\",\"reference_no\":\"SALE0581\",\"customer_id\":\"1182\",\"customer\":\"Gilbert muthee\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:47:08\",\"total_items\":\"12\",\"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\":\"8b9c072cdb23050b45b58c10218e3af7e387df4a76dc558814a024b20bdb13cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2558\",\"sale_id\":\"1475\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2564, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1474\",\"date\":\"2025-02-01 08:37:00\",\"reference_no\":\"SALE0580\",\"customer_id\":\"1181\",\"customer\":\"Gabriel maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:47:18\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3600.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\":\"d886c35c4fe65c66638b095f5d91c0a377ea7e69f38ff9f7bb67d371d0d7ba2e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2559\",\"sale_id\":\"1474\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2565, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1473\",\"date\":\"2025-02-01 08:36:00\",\"reference_no\":\"SALE0579\",\"customer_id\":\"1180\",\"customer\":\"John Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:47:47\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"f145aaf397e5e4fc881a4ff7b212508ddbfc6df8438ece2f4bbd7d3693326e7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2560\",\"sale_id\":\"1473\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2566, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1472\",\"date\":\"2025-02-01 08:34:00\",\"reference_no\":\"SALE0578\",\"customer_id\":\"1179\",\"customer\":\"Nicholas mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:46:31\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"296691a336989d441da93ad3b905ef79328a99ef49dda0d51dbe2b57b8798a28\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2554\",\"sale_id\":\"1472\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2567, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1445\",\"date\":\"2025-01-31 16:00:00\",\"reference_no\":\"SALE0551\",\"customer_id\":\"985\",\"customer\":\"mrs kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 16:03:07\",\"total_items\":\"11\",\"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\":\"7c4bb6edbce1e414b7ee62771a00d74e548e71c0c496a2465fd197a217b99d0e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2511\",\"sale_id\":\"1445\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2568, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1440\",\"date\":\"2025-01-31 11:08:00\",\"reference_no\":\"SALE0546\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 11:10:24\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"f653de13a13d82679ef481ce74780527702ddd9544481ad61b088b3599c5b990\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2495\",\"sale_id\":\"1440\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2569, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1439\",\"date\":\"2025-01-31 10:57:00\",\"reference_no\":\"SALE0545\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3055.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3055.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 11:26:55\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3055.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\":\"1c48c3d55cfb219bb201db3ba7aab70f4899f7d90e25e560481724aad8ec1ba0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2498\",\"sale_id\":\"1439\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.4500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"855.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.4500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2499\",\"sale_id\":\"1439\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2500\",\"sale_id\":\"1439\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2570, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1438\",\"date\":\"2025-01-31 10:53:00\",\"reference_no\":\"SALE0544\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 11:27:31\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"53b44a8300b3f60cdc1440f06541a24419e46906b649052a9bc610b2336dd4b4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2501\",\"sale_id\":\"1438\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2571, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1431\",\"date\":\"2025-01-31 09:38:00\",\"reference_no\":\"SALE0537\",\"customer_id\":\"1158\",\"customer\":\"Gitonga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:39:44\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"3000.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\":\"fa48136d95e1f141e0e5740b946689d2711347bddc689b0a8ed8c56169c7dba1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2472\",\"sale_id\":\"1431\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2572, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1430\",\"date\":\"2025-01-31 09:34:00\",\"reference_no\":\"SALE0536\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:35:44\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"1740f3ae85138964fc55f465b446371c80184781c1461995a76457aa389fc268\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2470\",\"sale_id\":\"1430\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2573, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1426\",\"date\":\"2025-01-31 09:20:00\",\"reference_no\":\"SALE0532\",\"customer_id\":\"1157\",\"customer\":\"mary njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"195.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"195.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:21:26\",\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"195.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\":\"e9e413f202bca36ad81963cb7a1bb7559912b707038fa085b25508800620e0c3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2451\",\"sale_id\":\"1426\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.1500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"195.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.1500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2574, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1425\",\"date\":\"2025-01-31 09:16:00\",\"reference_no\":\"SALE0531\",\"customer_id\":\"1156\",\"customer\":\"William Gichoya\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:21:41\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"2e3782ca2d2adf419ed065d919de3a63f1d267d4e6899aff01495b2993370e6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2452\",\"sale_id\":\"1425\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2575, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1424\",\"date\":\"2025-01-31 09:14:00\",\"reference_no\":\"SALE0530\",\"customer_id\":\"1155\",\"customer\":\"Duncan Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:21:57\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"725c728bc6d1f029464a702e5c6a5cddf49ecf4f579d09ee862d1efeba3bf9c0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2453\",\"sale_id\":\"1424\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2576, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1423\",\"date\":\"2025-01-31 09:02:00\",\"reference_no\":\"SALE0529\",\"customer_id\":\"1154\",\"customer\":\"Isaac Thagana\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:22:12\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2000.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\":\"ead3cab9e3e786490d3989257cbd6b2f3f20cffdf09fd724c0f38cb4921a274b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2454\",\"sale_id\":\"1423\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2577, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1422\",\"date\":\"2025-01-31 09:01:00\",\"reference_no\":\"SALE0528\",\"customer_id\":\"1153\",\"customer\":\"Wycliff\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:22:27\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"4000.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\":\"9da6a8ac0e8d0dab8237ebf89e543494c2c8e2d4e5fed52de02b91974663fc5a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2455\",\"sale_id\":\"1422\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2578, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1421\",\"date\":\"2025-01-31 08:59:00\",\"reference_no\":\"SALE0527\",\"customer_id\":\"1152\",\"customer\":\"Anderson Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:22:45\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3500.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\":\"0d3f71e048e4a1c20864841f563d541148864550a58bcef4431ac8322666a23e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2456\",\"sale_id\":\"1421\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2579, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1420\",\"date\":\"2025-01-31 08:57:00\",\"reference_no\":\"SALE0526\",\"customer_id\":\"1151\",\"customer\":\"Anthony Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:23:00\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3000.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\":\"352b20b41ef6796d6a0c21cd15db61330b6860cf5dd7516eeb4b99697a2bdbd9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2457\",\"sale_id\":\"1420\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2580, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1419\",\"date\":\"2025-01-31 08:56:00\",\"reference_no\":\"SALE0525\",\"customer_id\":\"1150\",\"customer\":\"Paul Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:23:15\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1000.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\":\"797b1e96f78f8fecc690dbbba2d4bddee0f34f553282b329660619b5f679e37b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2458\",\"sale_id\":\"1419\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2581, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1418\",\"date\":\"2025-01-31 08:45:00\",\"reference_no\":\"SALE0524\",\"customer_id\":\"1149\",\"customer\":\"Fredrick Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 08:50:31\",\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"11500.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\":\"7f2e819a30496773f9a98d94098c5a5977023f1d5ee9f0f41a1869c3384374bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2561\",\"sale_id\":\"1418\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2582, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1417\",\"date\":\"2025-01-31 08:44:00\",\"reference_no\":\"SALE0523\",\"customer_id\":\"1148\",\"customer\":\"David Ndathi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:23:50\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"f88059690c826fc2e5eff645723e8e2d724717317ae9f58eb5368a8796d13382\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2460\",\"sale_id\":\"1417\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2583, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1416\",\"date\":\"2025-01-31 08:42:00\",\"reference_no\":\"SALE0522\",\"customer_id\":\"1147\",\"customer\":\"John Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:24:08\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"14000.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\":\"6726a8739dba3ddee3161797f0be4e85ceb1b4b082794986cc7c8aff1cd73d2a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2461\",\"sale_id\":\"1416\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2584, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1437\",\"date\":\"2025-01-30 10:38:00\",\"reference_no\":\"SALE0543\",\"customer_id\":\"1161\",\"customer\":\"Paulo kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"36100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:43:34\",\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"36100.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\":\"a6d86ee5b7a15116a560be8d45d31c307fe651d7f803cec10d4e7ae2194a5c51\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2486\",\"sale_id\":\"1437\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2585, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1436\",\"date\":\"2025-01-30 10:29:00\",\"reference_no\":\"SALE0542\",\"customer_id\":\"1143\",\"customer\":\"Julius Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:32:31\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"17000.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\":\"1c3ee129400fe9c9508612c538b0e62f5555c523a12e61e7dd55ec2278f0d40f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2482\",\"sale_id\":\"1436\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2483\",\"sale_id\":\"1436\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2586, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1434\",\"date\":\"2025-01-30 10:13:00\",\"reference_no\":\"SALE0540\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:14:21\",\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"57000.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\":\"dddb1d013441a707fb397341aef907e0396ea3b7262f3a3ccd00830e047bfe70\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2477\",\"sale_id\":\"1434\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2587, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1433\",\"date\":\"2025-01-30 09:59:00\",\"reference_no\":\"SALE0539\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:00:02\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"0f289ef0c9026652da3c6c3d263624b6ed71c30667ef15744f6f85adadfd5aa7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2475\",\"sale_id\":\"1433\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2588, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1432\",\"date\":\"2025-01-30 09:43:00\",\"reference_no\":\"SALE0538\",\"customer_id\":\"1159\",\"customer\":\"Anthhony murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12675.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12675.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:33:22\",\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"2400.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\":\"b87b0b55a79e39385508405b069c174ccade7ba48d47dfedfca51aaf80912132\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2484\",\"sale_id\":\"1432\",\"product_id\":\"1122\",\"product_code\":\"75722675\",\"product_name\":\"Rionex propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12675.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2589, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1429\",\"date\":\"2025-01-30 09:32:00\",\"reference_no\":\"SALE0535\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:33:21\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"950.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\":\"971295a41fabc80cb9230c4f9b3732cbbc934650fe8af3c72f70dcdfee6ed328\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2467\",\"sale_id\":\"1429\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2590, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1428\",\"date\":\"2025-01-30 09:30:00\",\"reference_no\":\"SALE0534\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:31:05\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"bcaf85a117f3be94a03cbbcaaa1d836cef45516a067e6739e3b6ac54cc36b7bd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2465\",\"sale_id\":\"1428\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2591, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1415\",\"date\":\"2025-01-30 08:37:00\",\"reference_no\":\"SALE0521\",\"customer_id\":\"1017\",\"customer\":\"christopher muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"85500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"85500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 10:52:15\",\"total_items\":\"45\",\"pos\":\"0\",\"paid\":\"55500.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\":\"76ca0bce88dcfa5b707fe6b427f4bd88e58facabe6de0d83e6d228fb146c5c07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2574\",\"sale_id\":\"1415\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"45.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2592, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1414\",\"date\":\"2025-01-30 08:36:00\",\"reference_no\":\"SALE0520\",\"customer_id\":\"1146\",\"customer\":\"ann nyanguthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:38:57\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"9ae4a53ed93b3bb4ad1b650e2856c88071263316ef628848ca0d53bdb9dd6623\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2432\",\"sale_id\":\"1414\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2593, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1413\",\"date\":\"2025-01-30 08:35:00\",\"reference_no\":\"SALE0519\",\"customer_id\":\"1145\",\"customer\":\"Simon Murigu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:39:13\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"36b5639ca7a39ba2ecc228b3ae5f2edd5bfd9bec0bd13cd108a58c6f81f173aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2433\",\"sale_id\":\"1413\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2594, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1412\",\"date\":\"2025-01-30 08:33:00\",\"reference_no\":\"SALE0518\",\"customer_id\":\"1144\",\"customer\":\"Pauline Muthoni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:39:28\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"15500.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\":\"f4ec98c1c997c02f81edbd7d249d5feaf11f35d9d3b57b3f1a9c0c1b99c63134\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2434\",\"sale_id\":\"1412\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2595, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1411\",\"date\":\"2025-01-30 08:32:00\",\"reference_no\":\"SALE0517\",\"customer_id\":\"1143\",\"customer\":\"Julius Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:39:45\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1000.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\":\"4bd0fc2d2948b1e97cf93bb28f0f1af80c47953e1dbfaace20b37833294ddbba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2435\",\"sale_id\":\"1411\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2596, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1410\",\"date\":\"2025-01-30 08:29:00\",\"reference_no\":\"SALE0516\",\"customer_id\":\"992\",\"customer\":\"michael gitwe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:40:01\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"b7b032372137070774e4cc1f7abff3c4fc7e888b3e4dee1246ae57f89385796e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2436\",\"sale_id\":\"1410\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2597, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1409\",\"date\":\"2025-01-30 08:28:00\",\"reference_no\":\"SALE0515\",\"customer_id\":\"1142\",\"customer\":\"Alfred Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:40:17\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17600.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\":\"e6d8fb7b962a783a221ad4a50f09eb75073dac706ee15bb5a6ed9aa03801fb30\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2437\",\"sale_id\":\"1409\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2598, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1408\",\"date\":\"2025-01-30 08:26:00\",\"reference_no\":\"SALE0514\",\"customer_id\":\"1141\",\"customer\":\"John Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:40:31\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"50e8ffc738975ec97e73574906012d59e6ad458fe6001beb29ad7e6340b60f48\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2438\",\"sale_id\":\"1408\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2599, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1407\",\"date\":\"2025-01-30 08:23:00\",\"reference_no\":\"SALE0513\",\"customer_id\":\"1139\",\"customer\":\"Grace nyambura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:40:48\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"4e8c2e8594b933cbd8f4bf6aed4cb53d09a47a5e8231803a4f79f9d4aaa6dbf7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2439\",\"sale_id\":\"1407\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2600, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1406\",\"date\":\"2025-01-30 08:22:00\",\"reference_no\":\"SALE0512\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"93100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"93100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-03 14:50:02\",\"total_items\":\"49\",\"pos\":\"0\",\"paid\":\"60000.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\":\"bcfc7a7bd51ce6e47182de5e8945c72f12723e5d2cd8b7fa69a4e5a1effa1f1f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2527\",\"sale_id\":\"1406\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"49.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"93100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"49.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2601, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1405\",\"date\":\"2025-01-30 08:20:00\",\"reference_no\":\"SALE0511\",\"customer_id\":\"1138\",\"customer\":\"Regina Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 08:20:47\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"d4c78079c0eb2881ddfa1b0eecd949774ea1c2bde85951ef74d5022abdaad49f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2419\",\"sale_id\":\"1405\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2602, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1404\",\"date\":\"2025-01-29 17:03:00\",\"reference_no\":\"SALE0510\",\"customer_id\":\"1137\",\"customer\":\"samuel mararo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1950.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\":\"38276e3dc40d5e87cc75df98dacaa5415a9f6e780c1f6ff73d00e51156068a75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2417\",\"sale_id\":\"1404\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2603, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1402\",\"date\":\"2025-01-29 16:37:00\",\"reference_no\":\"SALE0508\",\"customer_id\":\"1136\",\"customer\":\"Lucy  Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"98774856b2b5e91776e534feed55d43570163c0d59565a46f70661a6dd2a1152\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2414\",\"sale_id\":\"1402\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2604, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1401\",\"date\":\"2025-01-29 16:35:00\",\"reference_no\":\"SALE0507\",\"customer_id\":\"1135\",\"customer\":\"Mbogo Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"22750.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\":\"28e87eaa93dc4711c3919ed4c07577efcf27939de0540b66cc2207a9e2e57fb4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2413\",\"sale_id\":\"1401\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2605, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1400\",\"date\":\"2025-01-29 16:32:00\",\"reference_no\":\"SALE0506\",\"customer_id\":\"1018\",\"customer\":\"sarah muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"7e3a15539e052f8aea199e994f5895cb308ac21b7725bf565e44e40d4470898a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2412\",\"sale_id\":\"1400\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2606, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1399\",\"date\":\"2025-01-29 16:31:00\",\"reference_no\":\"SALE0505\",\"customer_id\":\"1134\",\"customer\":\"felix muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1000.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\":\"22b7f8f3f496828f2393e2281dde9a347bf7bbc4eca5b0a8f1e197c85b50b40b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2411\",\"sale_id\":\"1399\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2607, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1398\",\"date\":\"2025-01-29 16:29:00\",\"reference_no\":\"SALE0504\",\"customer_id\":\"1133\",\"customer\":\"John KInyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"5600.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\":\"818d877b658ae458492dd74fb464132e8d806c71524065a9276854e68d941169\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2410\",\"sale_id\":\"1398\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2608, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1397\",\"date\":\"2025-01-29 16:27:00\",\"reference_no\":\"SALE0503\",\"customer_id\":\"1132\",\"customer\":\"Joel kIhohia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"500.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\":\"d63e51ce05a5e74c24ae6a78b53f694cfeb805ef7ce713aec67ed1fdad7c3a51\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2409\",\"sale_id\":\"1397\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2609, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1396\",\"date\":\"2025-01-29 16:25:00\",\"reference_no\":\"SALE0502\",\"customer_id\":\"1131\",\"customer\":\"Elias wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"64ee41a06afadbf4b94b1ca1b61e1ee8e1f8e79e8d9a03dd8bc15b13ea5e8061\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2408\",\"sale_id\":\"1396\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2610, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1395\",\"date\":\"2025-01-29 16:12:00\",\"reference_no\":\"SALE0501\",\"customer_id\":\"1130\",\"customer\":\"Gladys  Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"95f6d957b6d552591f90a2c44a4d1cd78513712fe37d69ded0302751cb134d97\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2407\",\"sale_id\":\"1395\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2611, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1394\",\"date\":\"2025-01-29 16:02:00\",\"reference_no\":\"SALE0500\",\"customer_id\":\"1129\",\"customer\":\"Julius Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1000.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\":\"abf47d793da80c787b62d7de46cb6f3a74d04f29bd781a53d86bada22ff42ccf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2406\",\"sale_id\":\"1394\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2612, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1393\",\"date\":\"2025-01-29 16:00:00\",\"reference_no\":\"SALE0499\",\"customer_id\":\"1128\",\"customer\":\"Jane  Catherine\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"16000.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\":\"85373b2b61f68a276b995330a0ef3707ed8964f664cfc35a8842a507a8b67399\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2405\",\"sale_id\":\"1393\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2613, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1392\",\"date\":\"2025-01-29 15:59:00\",\"reference_no\":\"SALE0498\",\"customer_id\":\"1127\",\"customer\":\"Nahashon Waithaji\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"14000.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\":\"9673ca02483b12c59a1a1571e9fb838dd431eee0d72df1af41642ebd9f08eba7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2404\",\"sale_id\":\"1392\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2614, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1391\",\"date\":\"2025-01-29 15:57:00\",\"reference_no\":\"SALE0497\",\"customer_id\":\"1126\",\"customer\":\"murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"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\":\"1f1dc271f9f064b3e3215300d5e2561c7f5a3070338013d794ec536c2b138f18\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2403\",\"sale_id\":\"1391\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2615, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1390\",\"date\":\"2025-01-29 15:53:00\",\"reference_no\":\"SALE0496\",\"customer_id\":\"1125\",\"customer\":\"Nixson Ukii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5000.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\":\"9f592eb88c48365790c7089ce2ccd1c85662e182205ace93d36820a90b15272c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2402\",\"sale_id\":\"1390\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2616, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1427\",\"date\":\"2025-01-29 09:28:00\",\"reference_no\":\"SALE0533\",\"customer_id\":\"794\",\"customer\":\"Humphrey\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 09:30:00\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"650.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\":\"777a0be851adc9114c5ff83fbacc7489434f7c5085f5a9f8d6def65c2fe0fe04\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2463\",\"sale_id\":\"1427\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2617, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1389\",\"date\":\"2025-01-28 16:44:00\",\"reference_no\":\"SALE0495\",\"customer_id\":\"1124\",\"customer\":\"Julius Mureithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"5000.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\":\"5aba09fbb9436e9ae32e2db10b193e52a6debc67636e3671dfe03ffa9b9cd209\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2399\",\"sale_id\":\"1389\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2618, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1388\",\"date\":\"2025-01-28 16:37:00\",\"reference_no\":\"SALE0494\",\"customer_id\":\"1123\",\"customer\":\"David Mbirui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"24\",\"pos\":\"0\",\"paid\":\"37000.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\":\"7e2b7ceca2f81a2f0c24eb88e488f9e67e6579159031a0b0827b3d111f72db86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2398\",\"sale_id\":\"1388\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2619, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1387\",\"date\":\"2025-01-28 16:27:00\",\"reference_no\":\"SALE0493\",\"customer_id\":\"999\",\"customer\":\"christopher wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"11000.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\":\"0ae9f3619d875fc9b44ea6baaba384abd865ee894a27ef23b348d526594da16c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2397\",\"sale_id\":\"1387\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2620, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1386\",\"date\":\"2025-01-28 16:23:00\",\"reference_no\":\"SALE0492\",\"customer_id\":\"1122\",\"customer\":\"Christopher Manegene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"88400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"88400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"136\",\"pos\":\"0\",\"paid\":\"29000.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\":\"d0d905e03a73623e2e7f1dedfcb099dc7aedee949ac40d18510968bbb3543a6d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2394\",\"sale_id\":\"1386\",\"product_id\":\"1112\",\"product_code\":\"94903006\",\"product_name\":\"harmony propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2395\",\"sale_id\":\"1386\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15275.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2396\",\"sale_id\":\"1386\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"92.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60125.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"92.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2621, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1385\",\"date\":\"2025-01-28 16:20:00\",\"reference_no\":\"SALE0491\",\"customer_id\":\"1122\",\"customer\":\"Christopher Manegene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"91000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"91000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"140\",\"pos\":\"0\",\"paid\":\"91000.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\":\"a2dab9508509ffdff6419e29539b81c7b28fc0f6f6b9af08fda4479af8af8677\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2391\",\"sale_id\":\"1385\",\"product_id\":\"1120\",\"product_code\":\"99878087\",\"product_name\":\"Rafano propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"25.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2392\",\"sale_id\":\"1385\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15275.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2393\",\"sale_id\":\"1385\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"91.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"59150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"91.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2622, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1384\",\"date\":\"2025-01-28 16:11:00\",\"reference_no\":\"SALE0490\",\"customer_id\":\"1121\",\"customer\":\"Stephen Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"2ce3748ad6aaebfd6d5d86004aa346befec3a528f67d29c3299e0063621b58e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2390\",\"sale_id\":\"1384\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2623, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1383\",\"date\":\"2025-01-28 16:08:00\",\"reference_no\":\"SALE0489\",\"customer_id\":\"1120\",\"customer\":\"Joseph Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"63d48498633a6d79f50d9f424dd64b35e5a09c548f751c1af9cb8d9a697c059f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2389\",\"sale_id\":\"1383\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2624, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1382\",\"date\":\"2025-01-28 16:06:00\",\"reference_no\":\"SALE0488\",\"customer_id\":\"1119\",\"customer\":\"Florence Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5000.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\":\"ab3877fc9301c563ddf34471eb6ae55ac052013b1f9f9a937a4688a1b64666ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2388\",\"sale_id\":\"1382\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2625, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1381\",\"date\":\"2025-01-28 15:20:00\",\"reference_no\":\"SALE0487\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"0e2a112b039bcdc0af4df3ff1c9d499c633f43a18c516d14477c0dfd5ff20b7d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2386\",\"sale_id\":\"1381\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"sukuma matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2626, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1380\",\"date\":\"2025-01-28 15:19:00\",\"reference_no\":\"SALE0486\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"cf370b921924bdcabd5e39cc65807ad7ad45e89c197aef5de0e659af697a946c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2385\",\"sale_id\":\"1380\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2627, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1379\",\"date\":\"2025-01-28 15:18:00\",\"reference_no\":\"SALE0485\",\"customer_id\":\"1080\",\"customer\":\"amos kangai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"7a6cf7fe69e3dabcc544f59ed0671ca333600c54e2f781d5a9823677e492a76b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2384\",\"sale_id\":\"1379\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2628, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1378\",\"date\":\"2025-01-28 15:16:00\",\"reference_no\":\"SALE0484\",\"customer_id\":\"1118\",\"customer\":\"Julius Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2000.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\":\"aadedf009655a80156815a2478af02ee6d5f23988dec1520a1f24af225ba34aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2383\",\"sale_id\":\"1378\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2629, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1377\",\"date\":\"2025-01-28 15:09:00\",\"reference_no\":\"SALE0483\",\"customer_id\":\"1117\",\"customer\":\"peter kibuci\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"4d71a7dd516b24aac928f7ef25d0d756e513b74c9854b076ae852aeed6258379\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2381\",\"sale_id\":\"1377\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2382\",\"sale_id\":\"1377\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2630, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1376\",\"date\":\"2025-01-28 15:07:00\",\"reference_no\":\"SALE0482\",\"customer_id\":\"1116\",\"customer\":\"Joseph Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"500.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\":\"c8be3ad42bc1be6a10911d7722dc5d0133d9410bc44acebd9da834c6b9277507\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2380\",\"sale_id\":\"1376\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2631, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1375\",\"date\":\"2025-01-28 15:05:00\",\"reference_no\":\"SALE0481\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:49:38\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"76ec874ced5e9baaa0ee4f19c8e0d678cdffee9ca6e8a3f10af8fd584e91de19\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2489\",\"sale_id\":\"1375\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2632, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1374\",\"date\":\"2025-01-28 15:04:00\",\"reference_no\":\"SALE0480\",\"customer_id\":\"1114\",\"customer\":\"Danson wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"9100.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\":\"dd159ecf3073079792e762902b471d0d254bd1a544f4525dbbb1fe094499fe98\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2378\",\"sale_id\":\"1374\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2633, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1373\",\"date\":\"2025-01-28 15:02:00\",\"reference_no\":\"SALE0479\",\"customer_id\":\"1113\",\"customer\":\"Edwin karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"141285d9a9b744747ea956e5e9f6bb16d03e8a7a540e75c03a7a69a50d18bc5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2377\",\"sale_id\":\"1373\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2634, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1372\",\"date\":\"2025-01-28 15:00:00\",\"reference_no\":\"SALE0478\",\"customer_id\":\"1112\",\"customer\":\"Millicent Njoka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"cf1230f9e7c4bd83f0d62e0757c9bfe320324834b1823929da17c7dc5789529e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2376\",\"sale_id\":\"1372\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2635, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1371\",\"date\":\"2025-01-27 16:10:00\",\"reference_no\":\"SALE0477\",\"customer_id\":\"1110\",\"customer\":\"michael Thumaita\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30225.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30225.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"47\",\"pos\":\"0\",\"paid\":\"30225.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\":\"7da3932a607f524f53369c34abec2e3a94483cfb400aa0e871fa02fe2b4fb2fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2375\",\"sale_id\":\"1371\",\"product_id\":\"1119\",\"product_code\":\"30081825\",\"product_name\":\"mix propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"46.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30225.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"46.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2636, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1370\",\"date\":\"2025-01-27 15:59:00\",\"reference_no\":\"SALE0476\",\"customer_id\":\"1109\",\"customer\":\"Patrick muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"16000.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\":\"e6c7649c77063e72d82faf8bf6c0fc7607351b2181a3fb89676355bbbcc58d03\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2373\",\"sale_id\":\"1370\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2637, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1369\",\"date\":\"2025-01-27 15:38:00\",\"reference_no\":\"SALE0475\",\"customer_id\":\"1108\",\"customer\":\"peter mwendwa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"5000.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\":\"9083c8e0def4b1be0f953a8884eb4a87b32f8e536be675321da21e9902159fa3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2371\",\"sale_id\":\"1369\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2638, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1368\",\"date\":\"2025-01-27 15:36:00\",\"reference_no\":\"SALE0474\",\"customer_id\":\"1107\",\"customer\":\"elijah gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-27 16:00:58\",\"total_items\":\"32\",\"pos\":\"0\",\"paid\":\"10000.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\":\"19e8062d91ea036b2ddb44292c34e6ee1cfa41653fa1e359a99dc60fcdc90781\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2374\",\"sale_id\":\"1368\",\"product_id\":\"1118\",\"product_code\":\"45671831\",\"product_name\":\"bareto propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"32.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2639, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1367\",\"date\":\"2025-01-27 15:33:00\",\"reference_no\":\"SALE0473\",\"customer_id\":\"1106\",\"customer\":\"patrick munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"10000.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\":\"d5fdd6ac7a740bb553d9b1995ea81cd8507b74443515b5813a1a57d33feb2f9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2369\",\"sale_id\":\"1367\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2640, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1366\",\"date\":\"2025-01-27 15:31:00\",\"reference_no\":\"SALE0472\",\"customer_id\":\"308\",\"customer\":\"Charles Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"8b84da1980c7cc2b952894bf3ef6ca41f0a11126781aa858996084ef8f02d643\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2368\",\"sale_id\":\"1366\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2641, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1365\",\"date\":\"2025-01-27 15:21:00\",\"reference_no\":\"SALE0471\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"29556026ba1d29d04b4161d132d9c8530d1f781dadc403340b01d859dfe58c11\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2365\",\"sale_id\":\"1365\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2642, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1364\",\"date\":\"2025-01-27 15:19:00\",\"reference_no\":\"SALE0470\",\"customer_id\":\"1105\",\"customer\":\"kelvin kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"660fa8a9e337f2708c55cfc5d2fe173f661a647488b93d984bf838385758f196\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2363\",\"sale_id\":\"1364\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2643, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1363\",\"date\":\"2025-01-27 15:16:00\",\"reference_no\":\"SALE0469\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"53c4d1e8536f35c5d3445b0638c5435a77447846ffad57563ac9c77e77941b17\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2362\",\"sale_id\":\"1363\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2644, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1362\",\"date\":\"2025-01-27 15:05:00\",\"reference_no\":\"SALE0468\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"11376b74ba5feff8b8a20f7a0c81904d1cf333dff5b816b4a2accaaa10e558f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2361\",\"sale_id\":\"1362\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2645, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1359\",\"date\":\"2025-01-27 14:56:00\",\"reference_no\":\"SALE0465\",\"customer_id\":\"1102\",\"customer\":\"charles macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"3000.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\":\"7fe6db5411e970f94e239a208228769f77bbe88d7437649bb0595f9bd3904166\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2357\",\"sale_id\":\"1359\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"14.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2646, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1357\",\"date\":\"2025-01-27 14:50:00\",\"reference_no\":\"SALE0463\",\"customer_id\":\"1100\",\"customer\":\"peter wamae\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"26\",\"pos\":\"0\",\"paid\":\"4000.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\":\"7a320b9dbcab19005db62bb0085e3d5fde19fe3711cba2d9fd91eb5d9e4a0729\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2355\",\"sale_id\":\"1357\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"49400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"26.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2647, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1356\",\"date\":\"2025-01-27 14:46:00\",\"reference_no\":\"SALE0462\",\"customer_id\":\"1099\",\"customer\":\"John Mboi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-03 15:15:26\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"8000.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\":\"d02b9b588a36feedec93226964df5ae04d8bbad5aa68475709a05f30dc206e20\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2529\",\"sale_id\":\"1356\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2648, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1355\",\"date\":\"2025-01-27 14:42:00\",\"reference_no\":\"SALE0461\",\"customer_id\":\"1098\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"2ff20fbe2ae024852d5d1ea99fa39f69463666db3d8f62c3edd53ec2beff44f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2353\",\"sale_id\":\"1355\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2649, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1361\",\"date\":\"2025-01-26 15:00:00\",\"reference_no\":\"SALE0467\",\"customer_id\":\"1104\",\"customer\":\"Jackson maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"133000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"133000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-27 15:01:59\",\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"126700.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\":\"468b2fd341e43ea194c3de41a86a52e640bbff2f89117f7f37db7e1fc948e991\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2360\",\"sale_id\":\"1361\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"133000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2650, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1360\",\"date\":\"2025-01-26 14:58:00\",\"reference_no\":\"SALE0466\",\"customer_id\":\"1103\",\"customer\":\"munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-27 15:30:22\",\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"50000.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\":\"1b0590425e0edf02d83fa077d7db186fff73e214b0d09cfb0fccc57061c2250a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2366\",\"sale_id\":\"1360\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2651, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1354\",\"date\":\"2025-01-25 11:38:00\",\"reference_no\":\"SALE0460\",\"customer_id\":\"1097\",\"customer\":\"John Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"3eedbb4fac87062799a788de38f2668974059cc9be2d5b5b97291d194b615a4d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2352\",\"sale_id\":\"1354\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2652, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1353\",\"date\":\"2025-01-25 11:08:00\",\"reference_no\":\"SALE0459\",\"customer_id\":\"1096\",\"customer\":\"patrick kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"15600.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\":\"3500d514d902cdcaeee3fa3e45b41c40b8ac31ca3e28337f94f336ab22d519e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2351\",\"sale_id\":\"1353\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2653, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1337\",\"date\":\"2025-01-24 08:15:00\",\"reference_no\":\"SALE0443\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:16:17\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"23e99e5eec9f6b7242882c43f0052ed69ed128687bf539c00f00778fc019dcf3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2317\",\"sale_id\":\"1337\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2654, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1336\",\"date\":\"2025-01-24 08:11:00\",\"reference_no\":\"SALE0442\",\"customer_id\":\"1081\",\"customer\":\"Daniel Nderitu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:12:09\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"75d16eb47b0d4614a517bfeff271976849d41dd242b0f542aae0ffe67262bacc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2314\",\"sale_id\":\"1336\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2655, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1335\",\"date\":\"2025-01-24 08:09:00\",\"reference_no\":\"SALE0441\",\"customer_id\":\"1080\",\"customer\":\"amos kangai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:12:27\",\"total_items\":\"10\",\"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\":\"2c8895d01e49687db443ae10f10cd52461bac3a06d71b69c392d79b3f7009329\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2315\",\"sale_id\":\"1335\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2656, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1334\",\"date\":\"2025-01-24 08:04:00\",\"reference_no\":\"SALE0440\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:05:29\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"d9dde8d428be20172ffcbe723f55de85e0cda07c42d3c74a4bc405950cd5ab69\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2301\",\"sale_id\":\"1334\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2657, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1333\",\"date\":\"2025-01-24 08:04:00\",\"reference_no\":\"SALE0439\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:05:41\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"17205bbdf85b88fc2ddd23de9cde8c53955c9efbeace33bc8ee92b7ac5ffcbba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2302\",\"sale_id\":\"1333\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2658, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1332\",\"date\":\"2025-01-24 08:03:00\",\"reference_no\":\"SALE0438\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:05:53\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"650.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\":\"48b0c9fb26d321a3d804f41ab15c3e67c7d4db585f0e030b38742548ebebd036\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2303\",\"sale_id\":\"1332\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2659, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1331\",\"date\":\"2025-01-24 08:01:00\",\"reference_no\":\"SALE0437\",\"customer_id\":\"1079\",\"customer\":\"Francis  Kihara\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:06:03\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"15400.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\":\"223c5cc225edcdc3f3b882aa452647a678ab0d0f550cdd6c19a0d269a9daab44\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2304\",\"sale_id\":\"1331\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2305\",\"sale_id\":\"1331\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2660, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1330\",\"date\":\"2025-01-24 07:58:00\",\"reference_no\":\"SALE0436\",\"customer_id\":\"1078\",\"customer\":\"Thomas Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:06:21\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"12300.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\":\"fca83191853e70c53692e8e88fc43a0d606cfdd147547d16d16cb14d84d8e8ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2306\",\"sale_id\":\"1330\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2307\",\"sale_id\":\"1330\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2661, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1329\",\"date\":\"2025-01-24 07:57:00\",\"reference_no\":\"SALE0435\",\"customer_id\":\"1077\",\"customer\":\"Rosemary Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:06:37\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"e39c89378a00675a75737f58bf4be32f0fb01356776083f3eba5cfcfc55c3ae5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2308\",\"sale_id\":\"1329\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2662, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1328\",\"date\":\"2025-01-24 07:55:00\",\"reference_no\":\"SALE0434\",\"customer_id\":\"1076\",\"customer\":\"patrick muriiiiimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:06:56\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"5904bc7a7420ee94a09d806046cb50acc76a344d664ab46743714fe5e1ef064d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2309\",\"sale_id\":\"1328\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2663, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1327\",\"date\":\"2025-01-24 07:53:00\",\"reference_no\":\"SALE0433\",\"customer_id\":\"1075\",\"customer\":\"Donald  Mutiso\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"85500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"85500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:07:09\",\"total_items\":\"45\",\"pos\":\"0\",\"paid\":\"50000.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\":\"0c04d4d3fd4feff0deac8a889e6eb14f39f4ef39ec9c742fe9caf62ecd6c897f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2310\",\"sale_id\":\"1327\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"45.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2664, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1326\",\"date\":\"2025-01-24 07:52:00\",\"reference_no\":\"SALE0432\",\"customer_id\":\"1074\",\"customer\":\"Joseph Kibui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:07:26\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"71a223bdb4c05c4969b81aca041ac4073ee5ea64099f6491ccd3b9c3616c4c29\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2311\",\"sale_id\":\"1326\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2665, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1583\",\"date\":\"2025-01-23 15:12:00\",\"reference_no\":\"SALE0689\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"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\":\"c18315233098069f733d2b20cd7affc71e6163c9a62e32a85bb1cbc12dc0766c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2774\",\"sale_id\":\"1583\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2666, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1347\",\"date\":\"2025-01-23 08:55:00\",\"reference_no\":\"SALE0453\",\"customer_id\":\"1090\",\"customer\":\"patrick muchiiiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:56:00\",\"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\":\"c793cd199bbebac23b9bc5de248e1e94b7a2c318801dc088df16813aba692a65\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2338\",\"sale_id\":\"1347\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2667, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1346\",\"date\":\"2025-01-23 08:54:00\",\"reference_no\":\"SALE0452\",\"customer_id\":\"1089\",\"customer\":\"Virginiah wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:54:37\",\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"5000.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\":\"85300bfb27c737c753b27524c138bba5dbaec3ad7e69ef11e143db1c550233a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2336\",\"sale_id\":\"1346\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2668, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1345\",\"date\":\"2025-01-23 08:51:00\",\"reference_no\":\"SALE0451\",\"customer_id\":\"1088\",\"customer\":\"John Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:53:25\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"6500.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\":\"c0304538b95c3e2b580fa3de4a79cc2c1ddf35d3f4a80154a03d0c3534af8ac3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2333\",\"sale_id\":\"1345\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2669, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1344\",\"date\":\"2025-01-23 08:48:00\",\"reference_no\":\"SALE0450\",\"customer_id\":\"1087\",\"customer\":\"damaris njeri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:53:36\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"500.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\":\"3441a8e6e4fcfaa3a230915bd3a1e4fedd36f5120bf959f0df59e5a34732dcc9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2334\",\"sale_id\":\"1344\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2670, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1343\",\"date\":\"2025-01-23 08:46:00\",\"reference_no\":\"SALE0449\",\"customer_id\":\"1086\",\"customer\":\"john murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 12:47:14\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"7f9d11415be51e0df81f750bb1316d3432a82dcb5c3eca0c69aab4ed9a5d4b8b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2683\",\"sale_id\":\"1343\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2671, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1342\",\"date\":\"2025-01-23 08:43:00\",\"reference_no\":\"SALE0448\",\"customer_id\":\"1085\",\"customer\":\"John Njoka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:47:34\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"15000.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\":\"96a3a922b221ac7f7139f585acfe2a0237921e7fdee17d17db78be893ac74218\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2328\",\"sale_id\":\"1342\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2672, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1341\",\"date\":\"2025-01-23 08:41:00\",\"reference_no\":\"SALE0447\",\"customer_id\":\"1084\",\"customer\":\"samuel kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-15 12:32:42\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"7800.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\":\"82d160c078f1d7da49f658c770d005a51797e646e9ad4deaa3ef4d2fc1bae0d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2839\",\"sale_id\":\"1341\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2840\",\"sale_id\":\"1341\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2673, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1340\",\"date\":\"2025-01-23 08:40:00\",\"reference_no\":\"SALE0446\",\"customer_id\":\"1083\",\"customer\":\"martin kiragu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:40:47\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"1000.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\":\"efa499280b9b9f70e35c536822473d6bee22494d07a6242d60f000c1bdb3bcc3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2323\",\"sale_id\":\"1340\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2674, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1339\",\"date\":\"2025-01-23 08:38:00\",\"reference_no\":\"SALE0445\",\"customer_id\":\"1082\",\"customer\":\"Kelvin wangai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:38:31\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"f0636d0609299dc5bfce453478005e0937c4f1f25cf69fd19f34675e13322819\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2321\",\"sale_id\":\"1339\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2675, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1338\",\"date\":\"2025-01-23 08:36:00\",\"reference_no\":\"SALE0444\",\"customer_id\":\"987\",\"customer\":\"brian\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:37:03\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"11900.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\":\"05a77a2fbe9d14167dd520166a210facb13069f9717d4f7d0f5ff12bac39f586\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2319\",\"sale_id\":\"1338\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2676, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1350\",\"date\":\"2025-01-22 09:00:00\",\"reference_no\":\"SALE0456\",\"customer_id\":\"1093\",\"customer\":\"samuel gichuhi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 09:01:07\",\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"5000.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\":\"b49d68ea8a14b8470c0d4e35d99f18b06a8c04e1f52936d14d386e96d38f1f0b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2345\",\"sale_id\":\"1350\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2677, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1349\",\"date\":\"2025-01-22 08:59:00\",\"reference_no\":\"SALE0455\",\"customer_id\":\"1092\",\"customer\":\"purity kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:59:43\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"fff517c29b879c3a57f30e7430dbf900cbcb806bb9b480d53725569394a6a220\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2343\",\"sale_id\":\"1349\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2678, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1348\",\"date\":\"2025-01-22 08:57:00\",\"reference_no\":\"SALE0454\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:58:20\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"b585f4b42ce01e2506244e82f4c1741fe138d95d8da36b7f03a69b89ccf8674d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2341\",\"sale_id\":\"1348\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2679, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1322\",\"date\":\"2025-01-21 16:47:00\",\"reference_no\":\"SALE0428\",\"customer_id\":\"1071\",\"customer\":\"Benson Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"ccdafa3f96f3ed2d82c2d3ae1b22033ac178ce01b8093f8e623caab890b1069a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2281\",\"sale_id\":\"1322\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2680, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1321\",\"date\":\"2025-01-21 16:46:00\",\"reference_no\":\"SALE0427\",\"customer_id\":\"1070\",\"customer\":\"Peter Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"3f9eb54a8288173209841860cc3b259dec79938e21ea7d77ffb43290b4589e5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2280\",\"sale_id\":\"1321\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2681, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1320\",\"date\":\"2025-01-21 16:44:00\",\"reference_no\":\"SALE0426\",\"customer_id\":\"1069\",\"customer\":\"peter Muthingani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6500.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\":\"d1c8c1d289b8c4c12734aa4454ee437ca7984f963f521103f1fd8714a3f4b630\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2279\",\"sale_id\":\"1320\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2682, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1319\",\"date\":\"2025-01-21 16:42:00\",\"reference_no\":\"SALE0425\",\"customer_id\":\"1068\",\"customer\":\"John Mutugi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"5900.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\":\"797ba18b338ae6e97143bae54c874eacb1055e61c9c5b648ff0741706ffda95a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2277\",\"sale_id\":\"1319\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2278\",\"sale_id\":\"1319\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2683, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1318\",\"date\":\"2025-01-21 16:40:00\",\"reference_no\":\"SALE0424\",\"customer_id\":\"1067\",\"customer\":\"John Githu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 14:59:32\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1000.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\":\"0641f23b3a9cc66aaf0427b63800a4c7886cf5041ba1b232ca234f22be31f1d9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2772\",\"sale_id\":\"1318\",\"product_id\":\"1117\",\"product_code\":\"27618411\",\"product_name\":\"rambo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2684, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1403\",\"date\":\"2025-01-20 16:47:00\",\"reference_no\":\"SALE0509\",\"customer_id\":\"1058\",\"customer\":\"Harrison Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-29 16:49:45\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4400.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\":\"dfbcd87dc55951fc02a4b983e6d299ed198b78a3e590c60c235337bce192c1ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2416\",\"sale_id\":\"1403\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2685, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1444\",\"date\":\"2025-01-20 15:58:00\",\"reference_no\":\"SALE0550\",\"customer_id\":\"1164\",\"customer\":\"mr munene(paul thika)\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"288000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"288000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 16:00:03\",\"total_items\":\"320\",\"pos\":\"0\",\"paid\":\"250000.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\":\"a6caa45b1d2e3df7f05d5dd474cd043fdcad3ef2045c193e7a169eda1e3c5a60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2508\",\"sale_id\":\"1444\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"160000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2509\",\"sale_id\":\"1444\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"128000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2686, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1540\",\"date\":\"2025-01-20 12:39:00\",\"reference_no\":\"SALE0646\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"36100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 12:40:21\",\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"9500.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\":\"164954989c42d24049696bc42ac1dc69e92d8d349ae83a813ff5de8a2e556020\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2682\",\"sale_id\":\"1540\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2687, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1317\",\"date\":\"2025-01-20 10:18:00\",\"reference_no\":\"SALE0423\",\"customer_id\":\"1065\",\"customer\":\"Josiah kagai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:19:10\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"e1fb6b6b991a0adc795320f34e9f7fb1bc5c65a0e0e2f586bf8443f37a15ceee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2267\",\"sale_id\":\"1317\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2688, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1316\",\"date\":\"2025-01-20 10:16:00\",\"reference_no\":\"SALE0422\",\"customer_id\":\"1064\",\"customer\":\"Samuel Gichohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:19:21\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3500.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\":\"af700f8a478f08f8284020578fb09c3823ac3cf7149902e473f1de4409f6e888\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2268\",\"sale_id\":\"1316\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2689, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1315\",\"date\":\"2025-01-20 09:58:00\",\"reference_no\":\"SALE0421\",\"customer_id\":\"1063\",\"customer\":\"Eliud\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:19:32\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"8331a70aac4946ff3d668e77e4d89e1ccf965fe6fe17f4415634aae2f002d110\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2269\",\"sale_id\":\"1315\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2690, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1314\",\"date\":\"2025-01-20 09:56:00\",\"reference_no\":\"SALE0420\",\"customer_id\":\"1062\",\"customer\":\"Joseph Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:19:43\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"2000.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\":\"426a8ba1480aafecb1482e54a9c185c3b53cdacae733d574551f69ba7cc92903\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2270\",\"sale_id\":\"1314\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2691, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1313\",\"date\":\"2025-01-20 09:54:00\",\"reference_no\":\"SALE0419\",\"customer_id\":\"1061\",\"customer\":\"Daniel Njiraini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:19:55\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"c229e5de927c03924c8653063f0284b6a7b34346a1d90d54b03f5b099ee51c60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2271\",\"sale_id\":\"1313\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2692, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1312\",\"date\":\"2025-01-20 09:51:00\",\"reference_no\":\"SALE0418\",\"customer_id\":\"1060\",\"customer\":\"Ndambiri Ngoroi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:20:08\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"ca6d4a28bfcd96bb14cd01989580d398435d5ef8581c5563b0d5c1fa0491882d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2272\",\"sale_id\":\"1312\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2693, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1311\",\"date\":\"2025-01-20 09:48:00\",\"reference_no\":\"SALE0417\",\"customer_id\":\"1059\",\"customer\":\"Jane Wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:20:20\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"700.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\":\"e9540bf4f1c6efbb2263f538253d9ac4403fde151ed19aabd909aa7a815d11ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2273\",\"sale_id\":\"1311\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2694, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1309\",\"date\":\"2025-01-20 09:42:00\",\"reference_no\":\"SALE0415\",\"customer_id\":\"719\",\"customer\":\"Benjamin Komu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:20:36\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"10000.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\":\"3172738dbdd17c53ce8b3f34c0247e3aea7f86555b24dcc1c98a8c43e72e6864\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2274\",\"sale_id\":\"1309\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2695, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1308\",\"date\":\"2025-01-20 09:41:00\",\"reference_no\":\"SALE0414\",\"customer_id\":\"1057\",\"customer\":\"Samuel cabbage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 10:21:02\",\"total_items\":\"10\",\"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\":\"aac78a3e5da41d4e0b5569d02087e878c31902447ee792a61fc37f4e87cea774\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2275\",\"sale_id\":\"1308\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2696, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1324\",\"date\":\"2025-01-20 09:25:00\",\"reference_no\":\"SALE0430\",\"customer_id\":\"1073\",\"customer\":\"David Maai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 09:27:02\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17100.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\":\"75fff18ae697a00a6a91ac3b0bf8cce5d768ce8c42fc65e0cec9857014861ac7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2284\",\"sale_id\":\"1324\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2697, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1442\",\"date\":\"2025-01-19 15:48:00\",\"reference_no\":\"SALE0548\",\"customer_id\":\"733\",\"customer\":\"benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 15:50:08\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17100.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\":\"f004da4c228f94f769e7568c9bbe927e3a941122661ac1a2193edd6da09507c8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2503\",\"sale_id\":\"1442\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2698, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1307\",\"date\":\"2025-01-18 14:08:00\",\"reference_no\":\"SALE0413\",\"customer_id\":\"1056\",\"customer\":\"Benard maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"52325.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"52325.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"81\",\"pos\":\"0\",\"paid\":\"52325.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\":\"29f541af707e36ed4a1629962e787429aebc6ed5553ea18d1f274d21bdf0c463\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2256\",\"sale_id\":\"1307\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"80.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52325.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"80.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2699, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1306\",\"date\":\"2025-01-18 14:03:00\",\"reference_no\":\"SALE0412\",\"customer_id\":\"1055\",\"customer\":\"virginiah Nyawira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"77d9d3c917355dc9163bec375cfd2c49253bd4dd90e39e337977427b16fd623c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2255\",\"sale_id\":\"1306\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2700, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1305\",\"date\":\"2025-01-18 14:00:00\",\"reference_no\":\"SALE0411\",\"customer_id\":\"1054\",\"customer\":\"Ibra\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"9000.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\":\"5bad05c7e05133808fa36d41db6571e8c6df54a7a7f65ca8399964ea372698c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2254\",\"sale_id\":\"1305\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2701, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1304\",\"date\":\"2025-01-18 09:34:00\",\"reference_no\":\"SALE0410\",\"customer_id\":\"1053\",\"customer\":\"Jamleck munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"35000.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\":\"ec46a34bf4130786136d70f0865690e563bebe87d16a40724fba999515cfdff8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2253\",\"sale_id\":\"1304\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2702, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1303\",\"date\":\"2025-01-18 09:26:00\",\"reference_no\":\"SALE0409\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"795fb9a4438c0dd459726073eed3c8a27a085bdf579a0d93c945bead5a1fd3a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2252\",\"sale_id\":\"1303\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2703, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1302\",\"date\":\"2025-01-18 09:25:00\",\"reference_no\":\"SALE0408\",\"customer_id\":\"1052\",\"customer\":\"Lewis macharia wanjohi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3000.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\":\"f8e41ac3406c9bc591ebb469d6451dac3a01aff6a2ebeefc672f87d8e07eaaaa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2251\",\"sale_id\":\"1302\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2704, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1300\",\"date\":\"2025-01-18 09:11:00\",\"reference_no\":\"SALE0406\",\"customer_id\":\"1050\",\"customer\":\"Geoffrey Muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"138a3f1c5af657299cbf4aad478f76ca1b7406c18fca59a2c1f07e70a45521a3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2245\",\"sale_id\":\"1300\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2705, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1299\",\"date\":\"2025-01-18 09:04:00\",\"reference_no\":\"SALE0405\",\"customer_id\":\"1049\",\"customer\":\"Muchiri Crucial\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"155025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"155025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"239\",\"pos\":\"0\",\"paid\":\"155025.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\":\"f33c5c8f2f61a1fd31c098b5b4e3ea863d03200193ec7cf1255384c6aec1dbe5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2243\",\"sale_id\":\"1299\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"181.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"117975.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"181.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2244\",\"sale_id\":\"1299\",\"product_id\":\"1100\",\"product_code\":\"14639397\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"37050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"57.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2706, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1298\",\"date\":\"2025-01-18 08:57:00\",\"reference_no\":\"SALE0404\",\"customer_id\":\"1049\",\"customer\":\"Muchiri Crucial\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"143025.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"143025.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"217\",\"pos\":\"0\",\"paid\":\"143025.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\":\"a2a13ea517490a035a8864ca74e3e15bc77efb9242c76a883686d282568278f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2240\",\"sale_id\":\"1298\",\"product_id\":\"1116\",\"product_code\":\"23850574\",\"product_name\":\"sweeet revelation\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"46.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2241\",\"sale_id\":\"1298\",\"product_id\":\"1100\",\"product_code\":\"14639397\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"37050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"57.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"2242\",\"sale_id\":\"1298\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"113.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"73775.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"113.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2707, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1301\",\"date\":\"2025-01-17 09:19:00\",\"reference_no\":\"SALE0407\",\"customer_id\":\"1051\",\"customer\":\"Boniface Murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 09:20:29\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"3a6dc2f95d4b21742b3ff3b7f1e3f5e177f0d0f6f3c7acee315881f4993be0d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2250\",\"sale_id\":\"1301\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2708, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1297\",\"date\":\"2025-01-17 08:42:00\",\"reference_no\":\"SALE0403\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:43:12\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"133866cf8bd4f531f92c7ecaaf5beef971f5f4c223cc9091c0676dacdbc347ca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2238\",\"sale_id\":\"1297\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2709, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1296\",\"date\":\"2025-01-17 08:39:00\",\"reference_no\":\"SALE0402\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3510.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"10\",\"total_discount\":\"10.0000\",\"order_discount\":\"10.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:42:28\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3500.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\":\"9dd927d8989b6a87bbc8e1465368d02776815e53bb04a2053c359ac31dca30f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2236\",\"sale_id\":\"1296\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.6950\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3510.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.7000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2710, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1295\",\"date\":\"2025-01-17 08:37:00\",\"reference_no\":\"SALE0401\",\"customer_id\":\"1048\",\"customer\":\"Monicah Nyanguthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:38:09\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4750.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\":\"ac227d5f8c8eb1c099ae6206e5840809a445d3b18a1ef4864d483e1d373ea511\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2233\",\"sale_id\":\"1295\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2711, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1294\",\"date\":\"2025-01-17 08:35:00\",\"reference_no\":\"SALE0400\",\"customer_id\":\"1047\",\"customer\":\"Joseph ndama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:36:13\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"2000.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\":\"53a1e8142311e5a227eabf57d115241092a84637fd4cc750763129cfe62c3afa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2231\",\"sale_id\":\"1294\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2712, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1293\",\"date\":\"2025-01-16 17:17:00\",\"reference_no\":\"SALE0399\",\"customer_id\":\"1046\",\"customer\":\"Patrick Waweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22425.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22425.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"23000.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\":\"4d6c400f95c63e6c787906fcb43e52d5de626286889f9443df9726a6e3fd220b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2229\",\"sale_id\":\"1293\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"34.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22425.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"34.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2713, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1292\",\"date\":\"2025-01-16 17:13:00\",\"reference_no\":\"SALE0398\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"40ee8b4b6359873d4a0c6d12f506a4785b69363a35bd5fafaaa71db57f7aa9f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2228\",\"sale_id\":\"1292\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2714, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1291\",\"date\":\"2025-01-16 17:12:00\",\"reference_no\":\"SALE0397\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"8860c4112ea9d2f69beb73016501d88cdec6680c2d8067b7f9a386489116de04\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2227\",\"sale_id\":\"1291\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2715, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1290\",\"date\":\"2025-01-16 17:11:00\",\"reference_no\":\"SALE0396\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"4c97adb5bc6d8fa32a96ab39a11795601b20cca0514550c9d5b07ec630463883\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2226\",\"sale_id\":\"1290\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2716, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1288\",\"date\":\"2025-01-16 16:55:00\",\"reference_no\":\"SALE0394\",\"customer_id\":\"1044\",\"customer\":\"Daniel Karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4750.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\":\"28248730fe4a7f2a14eb7070f4fa215a5a35d0772fc2cb9349c5aed06870b8a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2223\",\"sale_id\":\"1288\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2717, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1287\",\"date\":\"2025-01-16 16:53:00\",\"reference_no\":\"SALE0393\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"be78070f3f95dabbb84904c7d4ab8fc205915d7bc77fb2d2d1af6a987cbacb4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2222\",\"sale_id\":\"1287\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2718, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1286\",\"date\":\"2025-01-16 16:52:00\",\"reference_no\":\"SALE0392\",\"customer_id\":\"1043\",\"customer\":\"Anthony Githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"7000.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\":\"9ba1a6c8dd2d0de96a5673f33593b7c939e09964b05a737e7013e49f21ddc906\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2221\",\"sale_id\":\"1286\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2719, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1285\",\"date\":\"2025-01-16 16:51:00\",\"reference_no\":\"SALE0391\",\"customer_id\":\"1042\",\"customer\":\"Anthony Ndege\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-28 15:21:26\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d090815b1d3745770e9b8a0b6c692fc6bdbf4dc855b7e0f531d214ce43de17ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2387\",\"sale_id\":\"1285\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2720, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1284\",\"date\":\"2025-01-16 16:50:00\",\"reference_no\":\"SALE0390\",\"customer_id\":\"1021\",\"customer\":\"Erastus Mburu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"886f62bdce9a4be6d2b44d6d9ca202150287afc7f383fcc7a0e28ff2a93ed7fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2219\",\"sale_id\":\"1284\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2721, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1283\",\"date\":\"2025-01-16 16:49:00\",\"reference_no\":\"SALE0389\",\"customer_id\":\"1041\",\"customer\":\"francis kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3500.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\":\"3d37f99ef47a457132288c7f2c171c98267c0ea196068c3bf2a3a71a97c0e3be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2217\",\"sale_id\":\"1283\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2218\",\"sale_id\":\"1283\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2722, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1282\",\"date\":\"2025-01-16 16:46:00\",\"reference_no\":\"SALE0388\",\"customer_id\":\"1040\",\"customer\":\"Benard Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"43700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-03 16:19:10\",\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"43700.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\":\"05ef0653b008f08a68b9ab63df9e1994d9126f695ad2091a35e3716642fbf27c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2535\",\"sale_id\":\"1282\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"43700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"23.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2723, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1281\",\"date\":\"2025-01-16 16:45:00\",\"reference_no\":\"SALE0387\",\"customer_id\":\"1039\",\"customer\":\"catherine wanjira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"ef455a7131a5fa674d21240264fb3bb5ba694fef073f32c3ddff2d095bd5029f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2215\",\"sale_id\":\"1281\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2724, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1627\",\"date\":\"2025-01-16 13:00:00\",\"reference_no\":\"SALE0733\",\"customer_id\":\"1289\",\"customer\":\"Agnes Wangari  kiburi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"57ae6a3d3f758f917dd75a56f08e6f715181b2940a19bbc62ed3c44277fae9d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2843\",\"sale_id\":\"1627\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2725, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1538\",\"date\":\"2025-01-15 11:43:00\",\"reference_no\":\"SALE0644\",\"customer_id\":\"1224\",\"customer\":\"Joyce wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 11:47:30\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"e0563235c75fa294a51c01ff1b7ce2fd05d2ade25a422717e936e2bc6053bcbf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2679\",\"sale_id\":\"1538\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2726, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1554\",\"date\":\"2025-01-15 11:06:00\",\"reference_no\":\"SALE0660\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-12 11:07:29\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"855c33a1e069ed705f4ba65bc04d34a84c92d6592505fe1c49add6479bda8baa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2713\",\"sale_id\":\"1554\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2727, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1270\",\"date\":\"2025-01-14 13:52:00\",\"reference_no\":\"SALE0376\",\"customer_id\":\"1031\",\"customer\":\"Virginiah wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"13\",\"pos\":\"0\",\"paid\":\"24700.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\":\"49d18213aeb561f0c2ecba584694701a059e68ad10b10f11d39a718aa197df16\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2194\",\"sale_id\":\"1270\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2728, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1269\",\"date\":\"2025-01-14 13:17:00\",\"reference_no\":\"SALE0375\",\"customer_id\":\"1030\",\"customer\":\"henry\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"d131bd7b30aad2cab3397e37c2fd5238417b516c52501c0f5ded24c463998128\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2193\",\"sale_id\":\"1269\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2729, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1268\",\"date\":\"2025-01-14 13:16:00\",\"reference_no\":\"SALE0374\",\"customer_id\":\"1029\",\"customer\":\"justus ikanya\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"38000.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\":\"2f39c667f0734a0006ce0ec1ce33f8695ce22d3543dea99e00ab195ec463b52e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2192\",\"sale_id\":\"1268\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2730, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1267\",\"date\":\"2025-01-14 13:14:00\",\"reference_no\":\"SALE0373\",\"customer_id\":\"1028\",\"customer\":\"hannah wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"8afbc17f5d5ceb00f728fd749bfd9ca5cdedb29ae96c67d9c8a27a0547d02bd9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2191\",\"sale_id\":\"1267\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2731, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1266\",\"date\":\"2025-01-14 13:13:00\",\"reference_no\":\"SALE0372\",\"customer_id\":\"1027\",\"customer\":\"simon mumbu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"20000.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\":\"737c331c860d39bd954e472d516273797f6d40b1f8f0d2096838f4c0d1baf4f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2190\",\"sale_id\":\"1266\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2732, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1265\",\"date\":\"2025-01-14 13:12:00\",\"reference_no\":\"SALE0371\",\"customer_id\":\"1026\",\"customer\":\"John Ndunge\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"25000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"25\",\"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\":\"5c0e58697efcdccb6b10499c1759fc5f85525d9d1f3fe4e567b9f3f674dfd72e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2189\",\"sale_id\":\"1265\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2733, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1280\",\"date\":\"2025-01-14 10:55:00\",\"reference_no\":\"SALE0386\",\"customer_id\":\"1038\",\"customer\":\"stephen kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 10:19:01\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"34200.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\":\"2e04263e6251493af865f30e3af07d3321af39524fbd44d48f2364807e5b269e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2672\",\"sale_id\":\"1280\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2734, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1279\",\"date\":\"2025-01-14 10:42:00\",\"reference_no\":\"SALE0385\",\"customer_id\":\"1037\",\"customer\":\"paul githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-11 10:29:34\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"8e7dbeb1d4a350b878b9c9d182e4e6bdbf0e048d1fed669881e0f19e90515cdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2685\",\"sale_id\":\"1279\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2735, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1277\",\"date\":\"2025-01-14 10:27:00\",\"reference_no\":\"SALE0383\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:28:33\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"e46d8b358e6201e03f7f675d84773711337ef85490e7cc98c1c7b8f999068c86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2208\",\"sale_id\":\"1277\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2736, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1276\",\"date\":\"2025-01-14 10:24:00\",\"reference_no\":\"SALE0382\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:25:23\",\"total_items\":\"0\",\"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\":\"28d02c14097d469759e4b3b966a46cc17465d265d1fa4a76fea3ba70e6b573ae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2206\",\"sale_id\":\"1276\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.2500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2737, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1275\",\"date\":\"2025-01-14 10:22:00\",\"reference_no\":\"SALE0381\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:23:27\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"307d69ba2d028eab84629e8c616e5bcfb95186aac02cf276cbb31e8dadff2854\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2204\",\"sale_id\":\"1275\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2738, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1274\",\"date\":\"2025-01-14 10:20:00\",\"reference_no\":\"SALE0380\",\"customer_id\":\"1035\",\"customer\":\"isaiah muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:20:58\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"042a8191a296cd824362ee0bd949b7ab87b7bcfc5980632c2ab996da25174826\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2202\",\"sale_id\":\"1274\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2739, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1273\",\"date\":\"2025-01-14 10:18:00\",\"reference_no\":\"SALE0379\",\"customer_id\":\"1034\",\"customer\":\"naftlaly maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:18:54\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"d4d26eed2fc46d4f4606c1fb3b8a0b0b85c5f26010270b0982c71a1943f0b7d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2200\",\"sale_id\":\"1273\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2740, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1272\",\"date\":\"2025-01-14 10:16:00\",\"reference_no\":\"SALE0378\",\"customer_id\":\"1033\",\"customer\":\"Francis njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:17:06\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"d0111b19f963aa8a2bf916b87c5f19c8b1cb088f5fe619c58b21bb026ab77a31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2198\",\"sale_id\":\"1272\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2741, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1271\",\"date\":\"2025-01-14 10:05:00\",\"reference_no\":\"SALE0377\",\"customer_id\":\"1032\",\"customer\":\"MIrriam Wanjira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:05:52\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"0d9fcb551ad629fd1731392934f2aecddd7b366d7ffa6d49749584c712c9a732\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2196\",\"sale_id\":\"1271\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2742, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1257\",\"date\":\"2025-01-14 09:47:00\",\"reference_no\":\"SALE0363\",\"customer_id\":\"1024\",\"customer\":\"Allan Ngongo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"dec6df6c15ff0cd983400c62ea1a9f4ec636d03712cac823827836cd68571b6b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2173\",\"sale_id\":\"1257\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2743, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1256\",\"date\":\"2025-01-14 09:45:00\",\"reference_no\":\"SALE0362\",\"customer_id\":\"1023\",\"customer\":\"Joseph  kimani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"e531fb19660754b7889428ba647d9a85c18a3c9c11cc8946fae87700588a0c52\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2172\",\"sale_id\":\"1256\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2744, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1248\",\"date\":\"2025-01-13 17:20:00\",\"reference_no\":\"SALE0354\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"605215bf0db7b9120a7bbbfc17a0cacbb2e03f4638f7b9fdf590047169b39af7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2156\",\"sale_id\":\"1248\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2745, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1247\",\"date\":\"2025-01-13 17:19:00\",\"reference_no\":\"SALE0353\",\"customer_id\":\"1019\",\"customer\":\"james waithaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5016.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5016.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5016.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\":\"a143b3d681f040fa021b97f47a2cc215ee6255ca290f25add58195a6b746ee1d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2155\",\"sale_id\":\"1247\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.6350\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5016.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.6400\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2746, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1246\",\"date\":\"2025-01-13 17:16:00\",\"reference_no\":\"SALE0352\",\"customer_id\":\"1018\",\"customer\":\"sarah muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"0be15175d040ac1b4d8ff76b36edaf4109f8f5e972f7a14a7e206f31383a4b4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2154\",\"sale_id\":\"1246\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2747, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1245\",\"date\":\"2025-01-13 17:12:00\",\"reference_no\":\"SALE0351\",\"customer_id\":\"1017\",\"customer\":\"christopher muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"b97ba3998fb7e6feffb4730b42ae1f12fc66c9895293037ab480147bbd632f16\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2153\",\"sale_id\":\"1245\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2748, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1244\",\"date\":\"2025-01-13 17:10:00\",\"reference_no\":\"SALE0350\",\"customer_id\":\"1016\",\"customer\":\"johnstone kiratu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:47:59\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"12100.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\":\"beb601a1699074f3b6368166ab0f147abea34ff9a43fcbbefffe2292896fb96f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2487\",\"sale_id\":\"1244\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2488\",\"sale_id\":\"1244\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2749, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1243\",\"date\":\"2025-01-13 17:07:00\",\"reference_no\":\"SALE0349\",\"customer_id\":\"1015\",\"customer\":\"naftaly muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"616ddc1c854b01432cbb18d605d2fc30c97802dc3062c2b4805a3690e57dba5e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2151\",\"sale_id\":\"1243\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2750, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1242\",\"date\":\"2025-01-13 17:01:00\",\"reference_no\":\"SALE0348\",\"customer_id\":\"522\",\"customer\":\"John Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-29 11:40:36\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"11000.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\":\"3561818a8416db33efa95b0df2b19045105026ed0f85bcf0ef9825d4a29e2d31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2400\",\"sale_id\":\"1242\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2401\",\"sale_id\":\"1242\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2751, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1241\",\"date\":\"2025-01-13 16:59:00\",\"reference_no\":\"SALE0347\",\"customer_id\":\"1014\",\"customer\":\"lewis karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"32300.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\":\"08cbed303a6f04c6078c44364d6a41b66671e2fb5bf61a436cdc5a3ea230c4b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2147\",\"sale_id\":\"1241\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2752, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1240\",\"date\":\"2025-01-13 16:51:00\",\"reference_no\":\"SALE0346\",\"customer_id\":\"1013\",\"customer\":\"leonard muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"a61c9cbd525df6baa93cc29be31871e4e43f8a09ca790bfde7b67997946f5c3d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2146\",\"sale_id\":\"1240\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2753, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1239\",\"date\":\"2025-01-13 16:47:00\",\"reference_no\":\"SALE0345\",\"customer_id\":\"1012\",\"customer\":\"Geoffrey muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11550.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"11550.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\":\"946ddd62e07f1439395313f0d13ecf4a386f8fd5263952140e76ac3edced849e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2145\",\"sale_id\":\"1239\",\"product_id\":\"1108\",\"product_code\":\"44647149\",\"product_name\":\"maxibell\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"16.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2754, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1238\",\"date\":\"2025-01-13 13:39:00\",\"reference_no\":\"SALE0344\",\"customer_id\":\"1011\",\"customer\":\"peterson gichobi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"e87aa1c15ef21e4037a92e96f255ae84a547997e89b3c1790f260a047f800e77\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2144\",\"sale_id\":\"1238\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2755, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1236\",\"date\":\"2025-01-13 13:32:00\",\"reference_no\":\"SALE0342\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 13:33:52\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"00ce4c9ea04382100b63729e6f5ad5e2d46b9afffa82e64b7f56bbc9583c1bb7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2141\",\"sale_id\":\"1236\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2756, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1233\",\"date\":\"2025-01-13 13:16:00\",\"reference_no\":\"SALE0339\",\"customer_id\":\"1007\",\"customer\":\"james githaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5000.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\":\"4deb7c22e1bee9d4df1f628067fa1209462c826eb582aa666a76dff03b7c89c1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2136\",\"sale_id\":\"1233\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2757, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1232\",\"date\":\"2025-01-13 13:13:00\",\"reference_no\":\"SALE0338\",\"customer_id\":\"1002\",\"customer\":\"eric munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3600.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\":\"f65e562941be74860032671c0d02981a83d143d35a2fea21209062a1e7fb82e3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2135\",\"sale_id\":\"1232\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2758, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1231\",\"date\":\"2025-01-13 13:13:00\",\"reference_no\":\"SALE0337\",\"customer_id\":\"1006\",\"customer\":\"edward kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"280b0893edde92f262918861dcdf7423e5f587878608d7aac69392167bcad41a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2134\",\"sale_id\":\"1231\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2759, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1230\",\"date\":\"2025-01-13 13:09:00\",\"reference_no\":\"SALE0336\",\"customer_id\":\"1005\",\"customer\":\"john mucebio\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17100.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\":\"a45be116070c012e91d331cd4415da1aea9dba14622ca7f656d7715a0e701284\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2133\",\"sale_id\":\"1230\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2760, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1229\",\"date\":\"2025-01-13 12:59:00\",\"reference_no\":\"SALE0335\",\"customer_id\":\"1001\",\"customer\":\"mary kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"209000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"209000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"110\",\"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\":\"ac52cc50e03f66629feabbc3ca97512e6920a80376e1a5b30bcf546259ded6fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2132\",\"sale_id\":\"1229\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"110.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"209000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"110.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2761, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1228\",\"date\":\"2025-01-13 12:58:00\",\"reference_no\":\"SALE0334\",\"customer_id\":\"1000\",\"customer\":\"peter\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"51bd51db760f52c434d56c5068ec7676328ecc0c733fba888dd1803415c3c237\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2131\",\"sale_id\":\"1228\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.7500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"3.7500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2762, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1227\",\"date\":\"2025-01-13 12:53:00\",\"reference_no\":\"SALE0333\",\"customer_id\":\"998\",\"customer\":\"paul\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"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\":\"93b320df08a9c537554080bdf3b7e5931b679d8053ddd3d454897948d1131e6a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2130\",\"sale_id\":\"1227\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2763, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1278\",\"date\":\"2025-01-13 10:39:00\",\"reference_no\":\"SALE0384\",\"customer_id\":\"1036\",\"customer\":\"milton wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"68400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"68400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-15 10:40:27\",\"total_items\":\"36\",\"pos\":\"0\",\"paid\":\"40000.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\":\"4f9208155f5e9fabaa6ff8d451db681c2108d4d5f7b8e4d1e0108575582ed9ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2210\",\"sale_id\":\"1278\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"68400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2764, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1258\",\"date\":\"2025-01-13 09:52:00\",\"reference_no\":\"SALE0364\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 09:52:59\",\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"14300.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\":\"79ec5ba15c0df9410f9ab67a40094835a707c44baf8698cfd6feedca9de790c9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2175\",\"sale_id\":\"1258\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2765, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1255\",\"date\":\"2025-01-13 09:43:00\",\"reference_no\":\"SALE0361\",\"customer_id\":\"1022\",\"customer\":\"justus murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 09:44:19\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"6c3ff7a32f429cf8bb4c51823910a859d892b3c7d869480bf761fadddb888238\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2171\",\"sale_id\":\"1255\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2766, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1254\",\"date\":\"2025-01-13 08:59:00\",\"reference_no\":\"SALE0360\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 09:00:50\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"4cf0f75c06cfa3980978cd0598b048c17004ffaf57a06bbd958cc21e76cf5ad8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2169\",\"sale_id\":\"1254\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2767, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1253\",\"date\":\"2025-01-13 08:54:00\",\"reference_no\":\"SALE0359\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"560.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"560.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 08:58:27\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"560.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\":\"b5a98cf773ba0a47aeb28205cd5140cbb96905ee8ff9c2bae11859173877a71c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2167\",\"sale_id\":\"1253\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.7000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"560.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.7000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2768, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1252\",\"date\":\"2025-01-13 08:53:00\",\"reference_no\":\"SALE0358\",\"customer_id\":\"1021\",\"customer\":\"Erastus Mburu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 08:54:21\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"695242003299374c9d8aede17091a64f32dcb730e7ea93fa615dc9f8a4cbe264\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2165\",\"sale_id\":\"1252\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2769, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1251\",\"date\":\"2025-01-13 08:38:00\",\"reference_no\":\"SALE0357\",\"customer_id\":\"1020\",\"customer\":\"Gera;ld Munyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 08:39:02\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"13300.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\":\"2658ad5e25c3ca8e8f7eae2d3929b3e5495165591a8ff1d94b87ec51a034d601\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2163\",\"sale_id\":\"1251\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2770, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1249\",\"date\":\"2025-01-13 08:32:00\",\"reference_no\":\"SALE0355\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 08:32:50\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"9747001d4607ab1cd38b5237f6eecdafd85bc30ddfaaa8a3ebb884b08fa46678\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2158\",\"sale_id\":\"1249\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2771, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1226\",\"date\":\"2025-01-11 12:51:00\",\"reference_no\":\"SALE0332\",\"customer_id\":\"997\",\"customer\":\"macharia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:51:58\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"ef9492ed701c1bf3540c1c56d0d81437295f2ca76ab48b952c759078e7f5883c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2129\",\"sale_id\":\"1226\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2772, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1225\",\"date\":\"2025-01-11 12:49:00\",\"reference_no\":\"SALE0331\",\"customer_id\":\"996\",\"customer\":\"James kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:49:50\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"807e11536b961bd1d569e776cab4888a6535b53aae71803e92b58b46362c6c31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2127\",\"sale_id\":\"1225\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2773, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1224\",\"date\":\"2025-01-11 12:44:00\",\"reference_no\":\"SALE0330\",\"customer_id\":\"995\",\"customer\":\"luke miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:45:23\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"13300.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\":\"f287c6b3c25e71493564be2a66795070d4158f185d76b29d222aca54282e188d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2125\",\"sale_id\":\"1224\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2774, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1223\",\"date\":\"2025-01-11 12:40:00\",\"reference_no\":\"SALE0329\",\"customer_id\":\"994\",\"customer\":\"Roseline NYaki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:41:27\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"698b562349146304dbeb0499a467add0b1e4d85adee7890f02880f7c4525ea36\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2123\",\"sale_id\":\"1223\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2775, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1264\",\"date\":\"2025-01-11 10:17:00\",\"reference_no\":\"SALE0370\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:20:29\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2100.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\":\"740d0a1f25ddce10edd4b66e56a6d9cebb35a573e0ad4f94a2812129044e7528\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2188\",\"sale_id\":\"1264\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.1000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.1000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2776, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1263\",\"date\":\"2025-01-11 10:15:00\",\"reference_no\":\"SALE0369\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:16:45\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"0001685d39ec17dcc5bb9610cc0356171d62f6d96b76a4e97066cf943dd539da\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2186\",\"sale_id\":\"1263\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2777, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1262\",\"date\":\"2025-01-11 10:14:00\",\"reference_no\":\"SALE0368\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:15:26\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"e1c8f50ca1e33a9c2878cc60ed07d87db598c66bc2d7194cd55d93ef4bb0be00\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2183\",\"sale_id\":\"1262\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2778, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1261\",\"date\":\"2025-01-11 10:13:00\",\"reference_no\":\"SALE0367\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:14:23\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"4a8243896765e6b24c881ead80450d0d6081225d6bde4095f9b026aa079982ab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2181\",\"sale_id\":\"1261\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2779, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1260\",\"date\":\"2025-01-11 10:08:00\",\"reference_no\":\"SALE0366\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:08:46\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"c612ef14a5259810840f5d69ce0443a0919c24eea13e15c66ed75c167d43ec69\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2179\",\"sale_id\":\"1260\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2780, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1259\",\"date\":\"2025-01-11 10:07:00\",\"reference_no\":\"SALE0365\",\"customer_id\":\"1025\",\"customer\":\"Patrick Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-14 10:07:48\",\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"16000.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\":\"3f3444d78264b6a7de9b5629f0de806ff96871b6aac025470e66b0c49f7242a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2177\",\"sale_id\":\"1259\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2781, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1352\",\"date\":\"2025-01-11 09:18:00\",\"reference_no\":\"SALE0458\",\"customer_id\":\"1095\",\"customer\":\"Gerishon wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 09:19:39\",\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"1000.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\":\"1ff9d60588d4cd34611837d9e9e66b24c720ff662e59f8a02af4b01fb5b3e605\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2350\",\"sale_id\":\"1352\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2782, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1219\",\"date\":\"2025-01-10 16:03:00\",\"reference_no\":\"SALE0325\",\"customer_id\":\"992\",\"customer\":\"michael gitwe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"599e90d2a6df1a5f57828794d8237393230f39c429fb15dd49a35680ae8fb498\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2114\",\"sale_id\":\"1219\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2783, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1218\",\"date\":\"2025-01-10 15:42:00\",\"reference_no\":\"SALE0324\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"042d255dfce7bc0c0933d141d7ab71ba4d291bc7fd7fb5e43100fd242cd9fb1b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2112\",\"sale_id\":\"1218\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2784, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1217\",\"date\":\"2025-01-10 15:41:00\",\"reference_no\":\"SALE0323\",\"customer_id\":\"991\",\"customer\":\"samuel muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"6500.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\":\"939a12e8b35c31cb8b8ab6b88cd267869c552627e930e90ac839636b7618ecac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2111\",\"sale_id\":\"1217\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2785, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1216\",\"date\":\"2025-01-10 13:40:00\",\"reference_no\":\"SALE0322\",\"customer_id\":\"990\",\"customer\":\"phyllis kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 10:25:48\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"28500.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\":\"3a6121d17e47a565491dde0934d382bffe58586a1e12da65ab1a57076a58e5d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2289\",\"sale_id\":\"1216\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2786, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1215\",\"date\":\"2025-01-10 13:35:00\",\"reference_no\":\"SALE0321\",\"customer_id\":\"989\",\"customer\":\"eric wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"dae212e84bf355fdd81d697d9ed6e4069dc7b0d56254a95a8b9818c4834b93e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2107\",\"sale_id\":\"1215\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2787, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1214\",\"date\":\"2025-01-10 13:32:00\",\"reference_no\":\"SALE0320\",\"customer_id\":\"988\",\"customer\":\"josphat maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"7d0018313fa4a8ef38dbf1d609a97dee5a833a6d68ad8b9e60b465c85406522f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2106\",\"sale_id\":\"1214\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2788, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1221\",\"date\":\"2025-01-09 12:26:00\",\"reference_no\":\"SALE0327\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:27:45\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"9e372e855b5c426d1e6d85afd0032b4ce0520ec89831fa8064f4fff7ba0eab54\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2119\",\"sale_id\":\"1221\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2789, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1211\",\"date\":\"2025-01-09 10:25:00\",\"reference_no\":\"SALE0317\",\"customer_id\":\"984\",\"customer\":\"lazarus muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:26:19\",\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"114000.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\":\"b8c22a9888c105d02c6ce118d3872aad54913a7986ab758cb68ac99060932793\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2101\",\"sale_id\":\"1211\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2790, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1435\",\"date\":\"2025-01-09 10:21:00\",\"reference_no\":\"SALE0541\",\"customer_id\":\"1160\",\"customer\":\"simon murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"171000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"171000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 10:22:53\",\"total_items\":\"90\",\"pos\":\"0\",\"paid\":\"171000.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\":\"a9124a33479c32d2d0ec757ee585181017452d3adf2db314161ed120da5ce509\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2479\",\"sale_id\":\"1435\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"171000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"90.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2791, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1204\",\"date\":\"2025-01-09 09:19:00\",\"reference_no\":\"SALE0310\",\"customer_id\":\"847\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 09:20:41\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"cc7880bd37e28fe4ca7352a6a1c80d4875289e94252a22ce3e867b491dbd1bc8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2081\",\"sale_id\":\"1204\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2792, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1200\",\"date\":\"2025-01-09 09:01:00\",\"reference_no\":\"SALE0306\",\"customer_id\":\"975\",\"customer\":\"francis karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 10:18:40\",\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"30400.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\":\"1d950178350139d53e899853ec5462d135d5dcf3d477a7aa1fe48fbe7923310b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2288\",\"sale_id\":\"1200\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2793, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1199\",\"date\":\"2025-01-09 08:59:00\",\"reference_no\":\"SALE0305\",\"customer_id\":\"974\",\"customer\":\"peter\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1901.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1901.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 09:04:01\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1901.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\":\"0afb909a77e840e80ffdcb601d178c080833f32fdd8edd5bb16a4e7d5189414b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2070\",\"sale_id\":\"1199\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2071\",\"sale_id\":\"1199\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.7900\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1501.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.7900\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2794, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1198\",\"date\":\"2025-01-09 08:54:00\",\"reference_no\":\"SALE0304\",\"customer_id\":\"972\",\"customer\":\"joseph murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"86ae76c6c909412aefb515a6a01f4812bc61378123e7b6bca69716ebe9a0eef2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2065\",\"sale_id\":\"1198\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2795, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1197\",\"date\":\"2025-01-09 08:50:00\",\"reference_no\":\"SALE0303\",\"customer_id\":\"971\",\"customer\":\"Duncan munyi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 08:53:17\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"11400.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\":\"7863ea6f9167ff82f3800c6c1a1b2ec05c860a6bee89bd06a9d656dfcfc6b850\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2064\",\"sale_id\":\"1197\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2796, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1237\",\"date\":\"2025-01-08 13:35:00\",\"reference_no\":\"SALE0343\",\"customer_id\":\"1010\",\"customer\":\"stephen njiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 13:36:20\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"3200.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\":\"aec2685177dc5eb02a8531c365b9911b9b2f2bb2ab76aaf32d62c10828ac2bb1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2143\",\"sale_id\":\"1237\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2797, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1220\",\"date\":\"2025-01-08 12:11:00\",\"reference_no\":\"SALE0326\",\"customer_id\":\"993\",\"customer\":\"catherine mbuitu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:12:38\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"1cc8bc31c47d59032ade183db6b53b9f348d4aed3ccaca890c3555996e11ec59\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2116\",\"sale_id\":\"1220\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2798, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1195\",\"date\":\"2025-01-08 11:12:00\",\"reference_no\":\"SALE0301\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 11:24:51\",\"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\":\"2efb7f83d67e87c016e032a4e749f1b5c6a502c51b2290800301abb2033c1d43\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2061\",\"sale_id\":\"1195\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2799, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1193\",\"date\":\"2025-01-08 11:03:00\",\"reference_no\":\"SALE0299\",\"customer_id\":\"968\",\"customer\":\"stephen wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 11:04:11\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"c9dfadb377cc1c17fb032557a4569e4ee9b4f958065599950c7c9992ced77722\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2056\",\"sale_id\":\"1193\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2800, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1192\",\"date\":\"2025-01-08 10:56:00\",\"reference_no\":\"SALE0298\",\"customer_id\":\"967\",\"customer\":\"kinyua murigu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 15:36:46\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15700.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\":\"a6e23a59aa22ba939c6a82b3503cac361d360cf1225afdb6629e90bb770599e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2109\",\"sale_id\":\"1192\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2110\",\"sale_id\":\"1192\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2801, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1191\",\"date\":\"2025-01-08 10:53:00\",\"reference_no\":\"SALE0297\",\"customer_id\":\"966\",\"customer\":\"felista wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 10:17:45\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"28500.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\":\"2bc2cfcb5279a3fd13a08cceb7f2b7b8a4b817eaba12bc05b300ed17fd70ec03\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2287\",\"sale_id\":\"1191\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2802, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1190\",\"date\":\"2025-01-08 10:50:00\",\"reference_no\":\"SALE0296\",\"customer_id\":\"965\",\"customer\":\"cyrus wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:59:46\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"2bb8003b34228523ad8a8681d84ca77e548ee4240eb42c1f3ddb41b9507c0273\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2052\",\"sale_id\":\"1190\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2803, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1189\",\"date\":\"2025-01-08 10:44:00\",\"reference_no\":\"SALE0295\",\"customer_id\":\"964\",\"customer\":\"harrison wambugu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:59:30\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"887ab93d3dfe21a15ad855ad18c6e99cbc297f030239bbf9345cd8d810df8a58\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2051\",\"sale_id\":\"1189\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2804, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1188\",\"date\":\"2025-01-08 10:41:00\",\"reference_no\":\"SALE0294\",\"customer_id\":\"963\",\"customer\":\"johnson mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:59:09\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"e1c97c7737612db3cfee9a23b292f45f8272fab374f3b8709d6e3969e0f5a1be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2050\",\"sale_id\":\"1188\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2805, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1187\",\"date\":\"2025-01-08 10:32:00\",\"reference_no\":\"SALE0293\",\"customer_id\":\"962\",\"customer\":\"martin\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:58:38\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"bc0dfaf54e1c78ed5792fcaa79572e7b79b6b0678d1b78e543913340349436e5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2049\",\"sale_id\":\"1187\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2806, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1196\",\"date\":\"2025-01-08 10:30:00\",\"reference_no\":\"SALE0302\",\"customer_id\":\"970\",\"customer\":\"reuben mwenda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3575.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"5\",\"total_discount\":\"5.0000\",\"order_discount\":\"5.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3570.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 11:24:27\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3570.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\":\"214e44ce57722cff48e8c6ee5fae724ae870383944b44b76d81630105f894c31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2060\",\"sale_id\":\"1196\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3575.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2807, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1186\",\"date\":\"2025-01-08 10:29:00\",\"reference_no\":\"SALE0292\",\"customer_id\":\"961\",\"customer\":\"david nguku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"975.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"9\",\"total_discount\":\"9.0000\",\"order_discount\":\"9.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"966.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:47:43\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"966.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\":\"8df572d7eb7b0988b64a3afbe6b7093f140ca45bcb559d4aae8d686f8a9f2f4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2239\",\"sale_id\":\"1186\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.7500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"975.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.7500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2808, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1194\",\"date\":\"2025-01-08 09:30:00\",\"reference_no\":\"SALE0300\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 11:25:33\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2400.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\":\"6ce8915c7b5892f868fba683d1a4b78cff45951ee929fde60f141cb319e08464\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2062\",\"sale_id\":\"1194\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2809, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1179\",\"date\":\"2025-01-07 15:58:00\",\"reference_no\":\"SALE0285\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"e20e07fa9300867d522bb04e9df68d3004f210664a06177f0d0c7fcf97ec6445\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2020\",\"sale_id\":\"1179\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2810, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1178\",\"date\":\"2025-01-07 15:56:00\",\"reference_no\":\"SALE0284\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"0275d4f7d3963f641347039c4da97bddeca4baedb024849d0d1a6e5eaef1a041\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2019\",\"sale_id\":\"1178\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2811, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1177\",\"date\":\"2025-01-07 15:54:00\",\"reference_no\":\"SALE0283\",\"customer_id\":\"953\",\"customer\":\"josphat karimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"d472aeffc54afc8bf3600af2269d46104c666744e1c639d0caaff0a60d32a8a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2018\",\"sale_id\":\"1177\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2812, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1176\",\"date\":\"2025-01-07 15:52:00\",\"reference_no\":\"SALE0282\",\"customer_id\":\"542\",\"customer\":\"Benson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"400.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\":\"94d264a819f06b14cb3ad7d9c821b7981eba916b7e5e70eb8ff236d9e39f67fb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2017\",\"sale_id\":\"1176\",\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"sukuma matumbo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2813, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1174\",\"date\":\"2025-01-07 15:50:00\",\"reference_no\":\"SALE0280\",\"customer_id\":\"954\",\"customer\":\"besnon mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"5000.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\":\"0a4739d5d7560723658ac34e48ff0fa0cbeb716a8ded82aa5cc71a7e226e17d3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2014\",\"sale_id\":\"1174\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2814, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1173\",\"date\":\"2025-01-07 15:41:00\",\"reference_no\":\"SALE0279\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"351.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1\",\"total_discount\":\"1.0000\",\"order_discount\":\"1.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"350.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\":\"334bc6c4aa2cf64610774ebda3537e39bb674bafe0e95e7a2266ef0be06f73f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2013\",\"sale_id\":\"1173\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.2700\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"351.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2700\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2815, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1172\",\"date\":\"2025-01-07 15:40:00\",\"reference_no\":\"SALE0278\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"950.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\":\"f087e8a714c1337de40048ae874d70959e3a0c6d418e954ca01a8602c6ce1a89\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2012\",\"sale_id\":\"1172\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2816, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1171\",\"date\":\"2025-01-07 15:37:00\",\"reference_no\":\"SALE0277\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"6de7cd9dbd325db83934ddd5f9b323d3b4d9a9d69f547342e7536907e0228819\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2011\",\"sale_id\":\"1171\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2817, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1170\",\"date\":\"2025-01-07 15:28:00\",\"reference_no\":\"SALE0276\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"9456186f93bdd238abfe3e9b81991519fd14468209c381d5ed76f20630db524c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2009\",\"sale_id\":\"1170\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2818, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1169\",\"date\":\"2025-01-07 15:27:00\",\"reference_no\":\"SALE0275\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"a9b80d51f981aec29659a029209d8c02832eddc7af900028008859f071694b5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2008\",\"sale_id\":\"1169\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2819, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1168\",\"date\":\"2025-01-07 15:24:00\",\"reference_no\":\"SALE0274\",\"customer_id\":\"952\",\"customer\":\"wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5850.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5850.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5850.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\":\"456e3aba7439dc545beac1308917832e68c1a7e1528565cadc2ddc6f90c3a92d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2007\",\"sale_id\":\"1168\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2820, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1167\",\"date\":\"2025-01-07 15:11:00\",\"reference_no\":\"SALE0273\",\"customer_id\":\"951\",\"customer\":\"judy muthoni(margaret gathaiga)\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"750.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\":\"6f3a215dcf7fd0fc3fe8dc7304b9ea029774290d5802f3b972b148be3cec0a16\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2005\",\"sale_id\":\"1167\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2006\",\"sale_id\":\"1167\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2821, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1166\",\"date\":\"2025-01-07 15:08:00\",\"reference_no\":\"SALE0272\",\"customer_id\":\"950\",\"customer\":\"collins gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"16\",\"pos\":\"0\",\"paid\":\"15000.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\":\"0492f6371208a2c4a18573043a52c70ae61f4e594c43b52a15c284ea8c9ebbf2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2004\",\"sale_id\":\"1166\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2822, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1165\",\"date\":\"2025-01-07 15:05:00\",\"reference_no\":\"SALE0271\",\"customer_id\":\"949\",\"customer\":\"david karatu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"bea39237c9ef3d893df4a81a21c428754dbb0f1109b998676fcbc949e75a6562\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2003\",\"sale_id\":\"1165\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2823, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1164\",\"date\":\"2025-01-07 15:02:00\",\"reference_no\":\"SALE0270\",\"customer_id\":\"948\",\"customer\":\"james githaiga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"20900.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\":\"959657613d10c6a17ee5ec0543d40a977f37b07ec549a378ffdce4b5c6e7e96c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2002\",\"sale_id\":\"1164\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2824, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1183\",\"date\":\"2025-01-07 14:05:00\",\"reference_no\":\"SALE0289\",\"customer_id\":\"947\",\"customer\":\"james miano\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 09:36:58\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"2a4bdd7bed4a7558628fa12726ecbc64a9106c4fd8bad96f448b4e01dcf41dff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2036\",\"sale_id\":\"1183\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2825, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1182\",\"date\":\"2025-01-07 11:23:00\",\"reference_no\":\"SALE0288\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 09:30:27\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2500.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\":\"f410674597c9fbaa1ac2ce69d281a892a61537d5849cfe16819d031484efeee2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2034\",\"sale_id\":\"1182\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2826, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1181\",\"date\":\"2025-01-07 10:21:00\",\"reference_no\":\"SALE0287\",\"customer_id\":\"956\",\"customer\":\"martin njanja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5850.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5850.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 09:23:00\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5850.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\":\"f379c781edf78919d38ffd8d7856aadde4ec93edb7fc32203b15a0e83263f659\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2031\",\"sale_id\":\"1181\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2827, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1184\",\"date\":\"2025-01-07 09:45:00\",\"reference_no\":\"SALE0290\",\"customer_id\":\"192\",\"customer\":\"Joseph Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:58:00\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"8a0e39129ce653f05c2fcd4485d6351271d2840160169e9cbb8c50cbce1fabbc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2047\",\"sale_id\":\"1184\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2828, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1351\",\"date\":\"2025-01-07 09:13:00\",\"reference_no\":\"SALE0457\",\"customer_id\":\"1094\",\"customer\":\"BENSON mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 09:14:42\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"be3edfb40350144deab7f2c6081d1427bcf16b3aafde5c6d07244c4723145a2e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2347\",\"sale_id\":\"1351\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2829, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1162\",\"date\":\"2025-01-06 16:11:00\",\"reference_no\":\"SALE0268\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1500.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\":\"56aab4c8d183c61d3565120ef7aee37b40fb61f3319dca9860d01f246c7f27f2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2000\",\"sale_id\":\"1162\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2830, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1161\",\"date\":\"2025-01-06 16:06:00\",\"reference_no\":\"SALE0267\",\"customer_id\":\"496\",\"customer\":\"Damaris\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4000.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\":\"d319ba1d7997fcb610358b37998f7053b1c2545763dbb731841c820bf2952a3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1999\",\"sale_id\":\"1161\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2831, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1160\",\"date\":\"2025-01-06 15:18:00\",\"reference_no\":\"SALE0266\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"28342f1e20fccac7005d8534a52fbd08273fa2a43650d5ef80eed8657a2aee8e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1992\",\"sale_id\":\"1160\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2832, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1159\",\"date\":\"2025-01-06 15:14:00\",\"reference_no\":\"SALE0265\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"cd59592f23b06c45b5a995846561c1755995b80fba507d040ccdad0f3c98fdef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1991\",\"sale_id\":\"1159\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2833, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1158\",\"date\":\"2025-01-06 15:04:00\",\"reference_no\":\"SALE0264\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"e1b889443cc19821eb5afb34a65f34951e54718ef74aecb2c93421e3464dcb53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1989\",\"sale_id\":\"1158\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2834, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1157\",\"date\":\"2025-01-06 15:04:00\",\"reference_no\":\"SALE0263\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"b59cd19976c7b71d323246aaf967e78d3f4f9d1f1b11e69eee85d47923f509dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1988\",\"sale_id\":\"1157\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2835, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1156\",\"date\":\"2025-01-06 15:01:00\",\"reference_no\":\"SALE0262\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"8aaf7b2bb54db9b8ab40428dc08fd42277c1fc1f71ba04ee40cacd1dae4171a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1987\",\"sale_id\":\"1156\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2836, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1155\",\"date\":\"2025-01-06 14:53:00\",\"reference_no\":\"SALE0261\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"53dc7675f94e8cbb9c08800359a7eff6dad164ad133c1f6240ebbb24d79e7174\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1986\",\"sale_id\":\"1155\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2837, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1154\",\"date\":\"2025-01-06 14:53:00\",\"reference_no\":\"SALE0260\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4000.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\":\"07eaab525e21f12f1ed527d01d6f714cb24f343e17da42fed475a661084a3a29\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1985\",\"sale_id\":\"1154\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2838, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1153\",\"date\":\"2025-01-06 14:52:00\",\"reference_no\":\"SALE0259\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"143b0b4050ecd53f2cfb5eca149d276b9efd2ce6b964b3d7d646da4264aedb4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1984\",\"sale_id\":\"1153\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2839, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1152\",\"date\":\"2025-01-06 14:51:00\",\"reference_no\":\"SALE0258\",\"customer_id\":\"946\",\"customer\":\"dennis\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17100.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\":\"8a62e07e7a70832e6dbb1907a717f41890dfe58afa3711a9a67a20e316842761\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1983\",\"sale_id\":\"1152\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2840, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1441\",\"date\":\"2025-01-06 11:22:00\",\"reference_no\":\"SALE0547\",\"customer_id\":\"196\",\"customer\":\"wilson boma\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-03 16:45:49\",\"total_items\":\"60\",\"pos\":\"0\",\"paid\":\"95800.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\":\"ba54d977e573a9e6823b8fe2614c6d6a5b1153a75d53ec796566570d8e7823b3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2545\",\"sale_id\":\"1441\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2841, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1213\",\"date\":\"2025-01-06 10:48:00\",\"reference_no\":\"SALE0319\",\"customer_id\":\"987\",\"customer\":\"brian\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:49:36\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"3fc904700b718dbb3442b13635d46d96d051faee5be504049eef994d1d273bfa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2105\",\"sale_id\":\"1213\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2842, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1212\",\"date\":\"2025-01-06 10:29:00\",\"reference_no\":\"SALE0318\",\"customer_id\":\"986\",\"customer\":\"boniface kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:30:07\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3250.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\":\"42ed9687a8446921affed3fc72ac564b6365f7ba52e10649d55c291e53f8861f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2103\",\"sale_id\":\"1212\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2843, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1210\",\"date\":\"2025-01-06 10:22:00\",\"reference_no\":\"SALE0316\",\"customer_id\":\"983\",\"customer\":\"patrick muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:24:17\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"13300.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\":\"6025a9fd40c861099143796939086e8984ca8890a0766a3e53e0d49cfca6522d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2099\",\"sale_id\":\"1210\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2844, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1209\",\"date\":\"2025-01-06 10:19:00\",\"reference_no\":\"SALE0315\",\"customer_id\":\"982\",\"customer\":\"peter kamu20nde\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"29000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:21:10\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"29000.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\":\"0a972705870fb92ed3cbbbf4ea4ba9da5eff63a4d17dba80a54dae90e6ec3538\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2096\",\"sale_id\":\"1209\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2097\",\"sale_id\":\"1209\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2845, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1208\",\"date\":\"2025-01-06 10:12:00\",\"reference_no\":\"SALE0314\",\"customer_id\":\"980\",\"customer\":\"edwin wakini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:13:40\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"0f43e698fd2b160dfcdac1c9630c09e5fc01b274b37c4657189696a258ca9948\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2093\",\"sale_id\":\"1208\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2846, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1207\",\"date\":\"2025-01-06 10:06:00\",\"reference_no\":\"SALE0313\",\"customer_id\":\"979\",\"customer\":\"david mubari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:07:25\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"8000.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\":\"d41e1db4007b2668cf40d30c4a90568e8665a045cd7270fa1d2d2ec119dacd11\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2091\",\"sale_id\":\"1207\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2847, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1206\",\"date\":\"2025-01-06 10:05:00\",\"reference_no\":\"SALE0312\",\"customer_id\":\"978\",\"customer\":\"edward munene\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:05:33\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"a8511a934d0fb206d891e84b68b2c2742b43119af4b8d7899614fdd31294248b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2089\",\"sale_id\":\"1206\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2848, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1151\",\"date\":\"2025-01-04 14:45:00\",\"reference_no\":\"SALE0257\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"8be174d99880b0319dcb74594fd6c2f63eff53b35ee44701cf4f3275d8f1e6c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1982\",\"sale_id\":\"1151\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2849, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1150\",\"date\":\"2025-01-04 09:18:00\",\"reference_no\":\"SALE0256\",\"customer_id\":\"945\",\"customer\":\"John muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"233522e9566b842657837f78245791705dfa05778657c8200aedf37769b59724\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1981\",\"sale_id\":\"1150\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2850, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1202\",\"date\":\"2025-01-04 09:17:00\",\"reference_no\":\"SALE0308\",\"customer_id\":\"809\",\"customer\":\"Michael\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 09:18:37\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"92d572f6d4093e90259785a9c2a4c50b8107882d6bebb7035f3cd4476d960d23\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2078\",\"sale_id\":\"1202\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2851, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1201\",\"date\":\"2025-01-04 09:15:00\",\"reference_no\":\"SALE0307\",\"customer_id\":\"976\",\"customer\":\"muthomi maringa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 09:16:50\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"37ef7d6bacdae8775fbe4f1dce74c36f2fc1524d7ec72578f6727c285819977f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2076\",\"sale_id\":\"1201\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2852, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1149\",\"date\":\"2025-01-04 09:14:00\",\"reference_no\":\"SALE0255\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"5a0d62eb992953f9b59d92fbb419ca440760239c2fde5203818a07490c387f2b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1980\",\"sale_id\":\"1149\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2853, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1146\",\"date\":\"2025-01-04 08:55:00\",\"reference_no\":\"SALE0252\",\"customer_id\":\"943\",\"customer\":\"peterson kiama\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"6da2ab5cd9ed8644ac66474dbd5bbb1827e5b8b8513f870eb4f072a046d7b3d3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1976\",\"sale_id\":\"1146\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2854, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1139\",\"date\":\"2025-01-03 15:30:00\",\"reference_no\":\"SALE0245\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:35:57\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"800215980da231d3d93c4f7474d470478c86e07a11a79844f95673b974bf86b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1957\",\"sale_id\":\"1139\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2855, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1138\",\"date\":\"2025-01-03 14:35:00\",\"reference_no\":\"SALE0244\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:46:35\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"14000.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\":\"0e461384c183f0b0008e5610c30a22f3aa2e4cab5dda77aaca54dbffd17af6b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1970\",\"sale_id\":\"1138\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1971\",\"sale_id\":\"1138\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2856, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1144\",\"date\":\"2025-01-03 10:45:00\",\"reference_no\":\"SALE0250\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:45:03\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"0f6a914facb78c89c17bbdb18e861133ebad7e026293e9406c739bd6eafe09af\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1965\",\"sale_id\":\"1144\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2857, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1135\",\"date\":\"2025-01-03 10:20:00\",\"reference_no\":\"SALE0241\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:22:38\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"12bc37142490c8fe7c2ceb629eb3148327fa02c68884feaf1d55db972a5a83ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1951\",\"sale_id\":\"1135\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2858, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1136\",\"date\":\"2025-01-03 10:10:00\",\"reference_no\":\"SALE0242\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"494.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"4\",\"total_discount\":\"4.0000\",\"order_discount\":\"4.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"490.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:22:10\",\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"490.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\":\"26078e5b58d02f5e7192d18637644784f337aa40c4648efd2f94cd7dfad47056\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1950\",\"sale_id\":\"1136\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.3800\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"494.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.3800\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2859, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1137\",\"date\":\"2025-01-03 09:50:00\",\"reference_no\":\"SALE0243\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"3754b4103c6a208422cb94e9e6b90c9b9ec4c830920f443b18886598da242204\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1949\",\"sale_id\":\"1137\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2860, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1140\",\"date\":\"2025-01-03 09:35:00\",\"reference_no\":\"SALE0246\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:46:20\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"670e6f4372a2157f53995e07191bb1d0262e7fdb837460b0f860ac3b664a4574\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1969\",\"sale_id\":\"1140\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2861, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1148\",\"date\":\"2025-01-03 09:30:00\",\"reference_no\":\"SALE0254\",\"customer_id\":\"140\",\"customer\":\"Peter karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 09:11:05\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"1c1b00a1d57bbd5ec3cb1a0608a2aba977d2043abd2dbf146ffc86484dda17af\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1979\",\"sale_id\":\"1148\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2862, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1143\",\"date\":\"2025-01-03 09:30:00\",\"reference_no\":\"SALE0249\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:45:22\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"00b5822e04bafefa2c6dbff5b786c36eba575aad47ec8e17ee4f90613e255be5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1966\",\"sale_id\":\"1143\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2863, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1142\",\"date\":\"2025-01-03 09:30:00\",\"reference_no\":\"SALE0248\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:45:36\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"136295b77ca1429344308ee591781f5e7407fe6e619ff1a521c2c114ad28a58a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1967\",\"sale_id\":\"1142\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2864, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1134\",\"date\":\"2025-01-03 09:20:00\",\"reference_no\":\"SALE0240\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:22:59\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4600.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\":\"f72b7dfd4ad5833e1733f55cc79ed94e29dcbe1c0b09549d2dd5ff3ebe491add\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1952\",\"sale_id\":\"1134\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1953\",\"sale_id\":\"1134\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2865, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1141\",\"date\":\"2025-01-03 08:25:00\",\"reference_no\":\"SALE0247\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-04 08:45:57\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"a121877de9e268ad9e117e94e13f6954380b20e6228300f89df3edca22d2ba2a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1968\",\"sale_id\":\"1141\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2866, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1133\",\"date\":\"2025-01-03 01:05:00\",\"reference_no\":\"SALE0239\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"c4b526624b0394c7faf21f1b03392b271821cfc41bef9e4961237c743367013e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1944\",\"sale_id\":\"1133\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2867, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1132\",\"date\":\"2025-01-02 15:05:00\",\"reference_no\":\"SALE0238\",\"customer_id\":\"942\",\"customer\":\"george ngatia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"5200.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\":\"061a9825a47fc33542521e71c196a81cd78be47e67312467654e33b47acc9591\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1943\",\"sale_id\":\"1132\",\"product_id\":\"1112\",\"product_code\":\"94903006\",\"product_name\":\"harmony propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2868, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1131\",\"date\":\"2025-01-02 15:01:00\",\"reference_no\":\"SALE0237\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-06 15:24:14\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"18400.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\":\"908cc8f6e192792665ec2d4a25792b061503f7d51f8d27f69d7b6d0fbc352a3d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1997\",\"sale_id\":\"1131\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1998\",\"sale_id\":\"1131\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2869, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1130\",\"date\":\"2025-01-02 14:27:00\",\"reference_no\":\"SALE0236\",\"customer_id\":\"941\",\"customer\":\"benson warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"72200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"72200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-16 16:57:50\",\"total_items\":\"38\",\"pos\":\"0\",\"paid\":\"72200.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\":\"ab63c480d7d404c9c975941d557a65ba6192468a83305eac81ae80bfbe8051a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2224\",\"sale_id\":\"1130\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"38.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"72200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"38.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2870, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1129\",\"date\":\"2025-01-02 14:26:00\",\"reference_no\":\"SALE0235\",\"customer_id\":\"940\",\"customer\":\"david riua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-06 15:13:31\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"17100.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\":\"77ff9e66998cdf6c3d79c59d6062225396c3d1f0336e02ebc1b0a32b09f4833e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1990\",\"sale_id\":\"1129\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2871, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1128\",\"date\":\"2025-01-02 14:24:00\",\"reference_no\":\"SALE0234\",\"customer_id\":\"939\",\"customer\":\"dennis wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 10:44:25\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"13900.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\":\"b3a9319704b8a097fc67f8ec4faf1d8e6153900e03e347594b954543f9158233\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2676\",\"sale_id\":\"1128\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2872, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1127\",\"date\":\"2025-01-02 14:21:00\",\"reference_no\":\"SALE0233\",\"customer_id\":\"938\",\"customer\":\"geoffrey murage\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1000\",\"total_discount\":\"1000.0000\",\"order_discount\":\"1000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"25500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 09:15:58\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"25500.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\":\"88b07d99bc6babb6ac54268dd14bab07235ddd0aa17cf37aecafcceaf070cd22\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2246\",\"sale_id\":\"1127\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2247\",\"sale_id\":\"1127\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2248\",\"sale_id\":\"1127\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2873, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1126\",\"date\":\"2025-01-02 14:14:00\",\"reference_no\":\"SALE0232\",\"customer_id\":\"937\",\"customer\":\"john mark\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"75\",\"total_discount\":\"75.0000\",\"order_discount\":\"75.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4800.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\":\"86bcfba63afb88a5783da59b898f243c2f8b575ea0cd555f4521368969e1e8b2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1936\",\"sale_id\":\"1126\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2874, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1125\",\"date\":\"2025-01-02 14:10:00\",\"reference_no\":\"SALE0231\",\"customer_id\":\"936\",\"customer\":\"samuel wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1800.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\":\"a87e84c0f0e259a306b0330d1272630100bed7dc99f2bb2a762fa2af4f94ba39\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1935\",\"sale_id\":\"1125\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.8000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.8000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2875, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1124\",\"date\":\"2025-01-02 13:58:00\",\"reference_no\":\"SALE0230\",\"customer_id\":\"935\",\"customer\":\"geoffrey gitari\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"400\",\"total_discount\":\"400.0000\",\"order_discount\":\"400.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"9600.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\":\"8871bc01312d07da33605af4a9df55629dfe796c14ad5f3a7787fc40303613ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1933\",\"sale_id\":\"1124\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1934\",\"sale_id\":\"1124\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2876, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1123\",\"date\":\"2025-01-02 13:52:00\",\"reference_no\":\"SALE0229\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"200\",\"total_discount\":\"200.0000\",\"order_discount\":\"200.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3800.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\":\"54d02737c78be4ccfddfeecba24ff44777fafff89f36365e97124c2a099fa496\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1932\",\"sale_id\":\"1123\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2877, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1122\",\"date\":\"2025-01-02 13:50:00\",\"reference_no\":\"SALE0228\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"100\",\"total_discount\":\"100.0000\",\"order_discount\":\"100.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"4aff07088db5054e6aa802864097bd0cb228639a3a2b598b06eb2652ea3e4aee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1929\",\"sale_id\":\"1122\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2878, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1121\",\"date\":\"2025-01-02 13:49:00\",\"reference_no\":\"SALE0227\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"100\",\"total_discount\":\"100.0000\",\"order_discount\":\"100.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-02 13:52:12\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3200.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\":\"c5679b5db3c6599632717e7c43da1f32b745c9daec6c8f743d749f4b39a0c5fa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1930\",\"sale_id\":\"1121\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1931\",\"sale_id\":\"1121\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2879, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1120\",\"date\":\"2025-01-02 13:48:00\",\"reference_no\":\"SALE0226\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"5200.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\":\"0be3ec07732efb43c5c3a0b365084dd2a166253b9ab4362bd88efe17a476ed8d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1926\",\"sale_id\":\"1120\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2880, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1119\",\"date\":\"2025-01-02 13:46:00\",\"reference_no\":\"SALE0225\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"6000.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\":\"e9d7df73028cd327e4597faf29c8e3850059d8f83e83cdc0211c98a3f65d43b2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1925\",\"sale_id\":\"1119\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2881, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1118\",\"date\":\"2025-01-02 13:43:00\",\"reference_no\":\"SALE0224\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"6026e95788a6959bd592a5cb36b66bfbd927a3d603399509a33c85c558cc7a4e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1924\",\"sale_id\":\"1118\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2882, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1117\",\"date\":\"2025-01-02 13:42:00\",\"reference_no\":\"SALE0223\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2200.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\":\"ca477e34a1167fa56e753d76ba428f396f1e6eeb5c122963a15e5e9dd6acd917\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1922\",\"sale_id\":\"1117\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1923\",\"sale_id\":\"1117\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2883, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1116\",\"date\":\"2025-01-02 13:41:00\",\"reference_no\":\"SALE0222\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"8dc13c9b88111511b44f8c5d030f721fd15003a895bcd30040aa389bc85a8e3c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1921\",\"sale_id\":\"1116\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2884, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1115\",\"date\":\"2025-01-02 13:39:00\",\"reference_no\":\"SALE0221\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3250.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\":\"672e61e3b852778e6071a4d07f325bec67ce825b50dc046c04e61efa41b6a9a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1919\",\"sale_id\":\"1115\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1920\",\"sale_id\":\"1115\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2885, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1114\",\"date\":\"2025-01-02 13:37:00\",\"reference_no\":\"SALE0220\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"1ee47515e6bfa28dcc0231d98fe666af060166a4580c336956aaab04c6c93425\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1918\",\"sale_id\":\"1114\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2886, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1113\",\"date\":\"2025-01-02 13:35:00\",\"reference_no\":\"SALE0219\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1950.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\":\"b8b0637dcfd1fb0bea905fef58cf340643fc1c8fc9c31b79cfc3702d57759d9b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1917\",\"sale_id\":\"1113\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2887, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1112\",\"date\":\"2025-01-02 13:32:00\",\"reference_no\":\"SALE0218\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"a455fb701172a23c0ff58c30e4733980b1afba793029cbfe8f8122464fd04a01\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1916\",\"sale_id\":\"1112\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2888, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1180\",\"date\":\"2025-01-01 09:05:00\",\"reference_no\":\"SALE0286\",\"customer_id\":\"955\",\"customer\":\"erick muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 09:09:54\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"16800.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\":\"6ca48b8092cd088508b02b7cd0a2141a64bfef25b1b7212dfdbce8d67482f4a6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2026\",\"sale_id\":\"1180\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2027\",\"sale_id\":\"1180\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"2028\",\"sale_id\":\"1180\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2889, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1111\",\"date\":\"2024-12-31 16:59:00\",\"reference_no\":\"SALE0217\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"48000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"2400\",\"total_discount\":\"2400.0000\",\"order_discount\":\"2400.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-31 17:00:33\",\"total_items\":\"24\",\"pos\":\"0\",\"paid\":\"45600.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\":\"b1067a2417bf69bb8b1ff399fac7b032f255d3aa91405a35d3d69e1b94f4964a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1915\",\"sale_id\":\"1111\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2890, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1110\",\"date\":\"2024-12-31 12:34:00\",\"reference_no\":\"SALE0216\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"300\",\"total_discount\":\"300.0000\",\"order_discount\":\"300.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-31 12:35:43\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"0bfa0a1b3c192610d0ad1f29fa3db15a96652213e70d1b7cd1d5eac32601db4c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1913\",\"sale_id\":\"1110\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2891, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1109\",\"date\":\"2024-12-31 12:32:00\",\"reference_no\":\"SALE0215\",\"customer_id\":\"934\",\"customer\":\"JOSEPH kasioni\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"74000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"3700\",\"total_discount\":\"3700.0000\",\"order_discount\":\"3700.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"70300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"37\",\"pos\":\"0\",\"paid\":\"70300.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\":\"e2d7b4ec90698f77b0b1dfec6a008a3a0f5aa16da5877db79c0c06706ffb7558\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1911\",\"sale_id\":\"1109\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"74000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"37.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2892, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1107\",\"date\":\"2024-12-31 12:26:00\",\"reference_no\":\"SALE0213\",\"customer_id\":\"933\",\"customer\":\"Peter Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"650\",\"total_discount\":\"650.0000\",\"order_discount\":\"650.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"12350.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\":\"19f65ac9419ced925893dadfbcbe5618e9dbd21877f8e50f7c62efe92153b078\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1909\",\"sale_id\":\"1107\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2893, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1106\",\"date\":\"2024-12-31 12:23:00\",\"reference_no\":\"SALE0212\",\"customer_id\":\"912\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"600\",\"total_discount\":\"600.0000\",\"order_discount\":\"600.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"11400.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\":\"cdc8918ebc94c7ea8f84b77f2789aaee28b8b4732cb48f4af6509f3407ab6b43\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1908\",\"sale_id\":\"1106\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2894, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1105\",\"date\":\"2024-12-30 17:43:00\",\"reference_no\":\"SALE0211\",\"customer_id\":\"894\",\"customer\":\"Anthony Mbula\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"10000.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\":\"b0c6a22bb0f014bc9462bb76c1047477c5f87ed3f0f15579fa1f7883d029dbcd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1907\",\"sale_id\":\"1105\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2895, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1104\",\"date\":\"2024-12-30 17:42:00\",\"reference_no\":\"SALE0210\",\"customer_id\":\"932\",\"customer\":\"Benjamin Haraka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"12000.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\":\"41c77b555d9ff0273d4305f646e12e3f868a62f3d3fb2e5eb8b26e81e09b9814\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1906\",\"sale_id\":\"1104\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2896, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1103\",\"date\":\"2024-12-30 17:35:00\",\"reference_no\":\"SALE0209\",\"customer_id\":\"791\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"169.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"169.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 17:39:21\",\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"169.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\":\"eeb4349464aa2657557c49fc4c409e98e478824f3a335855445e715275e1fe84\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1905\",\"sale_id\":\"1103\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.1300\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"169.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.1300\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2897, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1102\",\"date\":\"2024-12-30 17:32:00\",\"reference_no\":\"SALE0208\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"46751691b44f16dc8aa0445052b6ea7c4486f148732d917a0a28084ec1ddae81\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1903\",\"sale_id\":\"1102\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2898, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1101\",\"date\":\"2024-12-30 17:30:00\",\"reference_no\":\"SALE0207\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"900.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\":\"bdd039412b829e1995c3fa32db5d6b2c98b13431b8d4132422e01c517c4e84ef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1901\",\"sale_id\":\"1101\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.3000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.3000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1902\",\"sale_id\":\"1101\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"0.3000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.3000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2899, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1100\",\"date\":\"2024-12-30 17:28:00\",\"reference_no\":\"SALE0206\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"300\",\"total_discount\":\"300.0000\",\"order_discount\":\"300.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"5700.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\":\"39260fa17e77c71ad1b317e5a7d412cf7c8ebd535b9418b4c1f1d71c0a0bcc02\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1899\",\"sale_id\":\"1100\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2900, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1099\",\"date\":\"2024-12-30 17:26:00\",\"reference_no\":\"SALE0205\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"203.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"3\",\"total_discount\":\"3.0000\",\"order_discount\":\"3.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"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\":\"24b28121e46ab354e66a6dacb24a294745f3d79729928816b82a1fcd096055f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1898\",\"sale_id\":\"1099\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.2900\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"203.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2900\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2901, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1098\",\"date\":\"2024-12-30 17:25:00\",\"reference_no\":\"SALE0204\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"500\",\"total_discount\":\"500.0000\",\"order_discount\":\"500.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"dac85cabafed0055cfe4823f01309986d07296e1857918027fd1d8d78637fd55\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1897\",\"sale_id\":\"1098\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2902, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1097\",\"date\":\"2024-12-30 17:25:00\",\"reference_no\":\"SALE0203\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"21769146b230583c1e79c020c411f19dda36d5f1f62e4004f3b735c3c81d6ca5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1896\",\"sale_id\":\"1097\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2903, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1096\",\"date\":\"2024-12-30 17:23:00\",\"reference_no\":\"SALE0202\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"50\",\"total_discount\":\"50.0000\",\"order_discount\":\"50.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 17:24:46\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"4500.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\":\"de2cfbff0613c95bb5d1aeb946d770248b9c82607b6b0d0f6aa62d578c0842a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1895\",\"sale_id\":\"1096\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4550.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2904, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1095\",\"date\":\"2024-12-30 14:54:00\",\"reference_no\":\"SALE0201\",\"customer_id\":\"930\",\"customer\":\"Jeremiah Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"8000.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\":\"366d0585a100c68ee4d317edec02825c699e32a875341d3f4bf45a370137f011\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1893\",\"sale_id\":\"1095\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2905, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1094\",\"date\":\"2024-12-30 14:46:00\",\"reference_no\":\"SALE0200\",\"customer_id\":\"929\",\"customer\":\"Nancy Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"16000.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\":\"864979d53c2f16fb52b1107838db6f6afa55b3f385831785bd03baa83d36241a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1892\",\"sale_id\":\"1094\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2906, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1092\",\"date\":\"2024-12-30 14:33:00\",\"reference_no\":\"SALE0198\",\"customer_id\":\"928\",\"customer\":\"Stephen Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"7000.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\":\"600e0cf5a399eee22e1f50ddeabe04090a137401211d562f4006e221179dc006\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1888\",\"sale_id\":\"1092\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2907, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1091\",\"date\":\"2024-12-30 14:31:00\",\"reference_no\":\"SALE0197\",\"customer_id\":\"927\",\"customer\":\"Simon Kabinda\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"125bcc1767c01277c83f25c2cdf8d44011c127392efc9b4412b373f924d03ae5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1887\",\"sale_id\":\"1091\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2908, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1090\",\"date\":\"2024-12-30 14:00:00\",\"reference_no\":\"SALE0196\",\"customer_id\":\"926\",\"customer\":\"Phyllis Kimotho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"fc6b83853c3b5f3ca60b73bc773f4e61b9c3bb831a8a0cac28d6e4196489c505\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1886\",\"sale_id\":\"1090\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2909, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1089\",\"date\":\"2024-12-30 13:57:00\",\"reference_no\":\"SALE0195\",\"customer_id\":\"524\",\"customer\":\"Harrison Njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"200\",\"total_discount\":\"200.0000\",\"order_discount\":\"200.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-07 15:30:30\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4800.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\":\"94282e30b4b4360d8074121b2e45ef976dbeafa7508ef2587cc3bca7bacb4f6f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2010\",\"sale_id\":\"1089\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2910, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1088\",\"date\":\"2024-12-30 11:28:00\",\"reference_no\":\"SALE0194\",\"customer_id\":\"925\",\"customer\":\"Ephantus Gichangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"70\",\"pos\":\"0\",\"paid\":\"45500.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\":\"949519f2590333b12b01fad3fe245e90f12fdf4676c7ea3ab8645a9ea7d0cecb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1884\",\"sale_id\":\"1088\",\"product_id\":\"1110\",\"product_code\":\"16181938\",\"product_name\":\"f2\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"70.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2911, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1087\",\"date\":\"2024-12-30 09:55:00\",\"reference_no\":\"SALE0193\",\"customer_id\":\"924\",\"customer\":\"Nzomo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"2000\",\"total_discount\":\"2000.0000\",\"order_discount\":\"2000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"38000.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\":\"04776f243908b0e2fa02f03e059088ce9da14f93ffdde9590b5ec4f1e03c500f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1883\",\"sale_id\":\"1087\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2912, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1086\",\"date\":\"2024-12-30 09:23:00\",\"reference_no\":\"SALE0192\",\"customer_id\":\"923\",\"customer\":\"Nahashon Maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 09:06:02\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"14900.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\":\"01e53af68b6d7fcaa411b805d08607abc9e5dc7a660a1b30bf62dcee39fd4fc0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2074\",\"sale_id\":\"1086\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2913, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1085\",\"date\":\"2024-12-30 09:21:00\",\"reference_no\":\"SALE0191\",\"customer_id\":\"922\",\"customer\":\"Paul Murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1000.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\":\"e39a49b7a41c64583b48ad92b27c47529a94aa19062c18c253588829f37496e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1880\",\"sale_id\":\"1085\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2914, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1446\",\"date\":\"2024-12-28 16:00:00\",\"reference_no\":\"SALE0552\",\"customer_id\":\"985\",\"customer\":\"mrs kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"0a261c3f58dbc439228ad5596fa5a70c02e64b80d21e498e3394b77e9c45642f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2512\",\"sale_id\":\"1446\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2915, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1084\",\"date\":\"2024-12-28 13:25:00\",\"reference_no\":\"SALE0190\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"20000.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\":\"1ffb2c3037b78e17455dda991891b67af3d3d016ebd7b392878bd21bbdff439e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1879\",\"sale_id\":\"1084\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2916, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1083\",\"date\":\"2024-12-28 13:15:00\",\"reference_no\":\"SALE0189\",\"customer_id\":\"921\",\"customer\":\"Douglas Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1000\",\"total_discount\":\"1000.0000\",\"order_discount\":\"1000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 17:29:44\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"cca22e3064764374593c46d96567d83952935527523329037a4d1e9b3de7b6fc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1900\",\"sale_id\":\"1083\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2917, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1082\",\"date\":\"2024-12-28 13:07:00\",\"reference_no\":\"SALE0188\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"650.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\":\"a7b80fa62c715c941154adbfddbb0d1a86893df86b94a7ebb2b9699904a8a9e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1876\",\"sale_id\":\"1082\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2918, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1081\",\"date\":\"2024-12-28 13:06:00\",\"reference_no\":\"SALE0187\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"03122ed5c1b30d22daaf4eb5742397a69a00733f5debe720e3802d70edcdda7c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1875\",\"sale_id\":\"1081\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2919, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1080\",\"date\":\"2024-12-28 12:59:00\",\"reference_no\":\"SALE0186\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"d4d1d6314485ed49c8d40d9d6e8b6974178ccf74f8537a5e4cf3ae6995c0e5be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1874\",\"sale_id\":\"1080\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2920, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1079\",\"date\":\"2024-12-28 12:55:00\",\"reference_no\":\"SALE0185\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"514b7a48043d97967bdc2bb6217d2f44111036aeb1f7d8591f29ea880d227683\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1873\",\"sale_id\":\"1079\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2921, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1063\",\"date\":\"2024-12-28 11:38:00\",\"reference_no\":\"SALE0169\",\"customer_id\":\"917\",\"customer\":\"Peterson Mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"8000.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\":\"ad35ac7eec9a9747055bddc04a0ae9fb29828731b3c48ddacb65c9097c482398\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1831\",\"sale_id\":\"1063\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2922, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1062\",\"date\":\"2024-12-28 11:32:00\",\"reference_no\":\"SALE0168\",\"customer_id\":\"205\",\"customer\":\"Msome\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"50000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"55\",\"pos\":\"0\",\"paid\":\"20000.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\":\"6964051e3de38aa7e610139deb8d08c1a16dfc12a0537daa954730b2eaddb5d3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1829\",\"sale_id\":\"1062\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1830\",\"sale_id\":\"1062\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"25.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2923, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1061\",\"date\":\"2024-12-28 11:30:00\",\"reference_no\":\"SALE0167\",\"customer_id\":\"916\",\"customer\":\"Benjamin  Koomu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1000\",\"total_discount\":\"1000.0000\",\"order_discount\":\"1000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 12:19:56\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"1c0a605c561609ce4e3ac562eb34915308a4fe16e9632b2a35ec3f804dc92993\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2117\",\"sale_id\":\"1061\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2924, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1060\",\"date\":\"2024-12-28 11:27:00\",\"reference_no\":\"SALE0166\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"70000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"70000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"70000.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\":\"a6098dff47a2231c9a98948b754d173c78883bfe193164502324e27998a589ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1827\",\"sale_id\":\"1060\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"70000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2925, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1058\",\"date\":\"2024-12-28 11:09:00\",\"reference_no\":\"SALE0164\",\"customer_id\":\"912\",\"customer\":\"David\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"6000.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\":\"f7750330b6ac01ad92c2341a05f40135ac4a6fc916015af8c5b981d3a16a2d9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1825\",\"sale_id\":\"1058\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2926, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1077\",\"date\":\"2024-12-27 14:30:00\",\"reference_no\":\"SALE0183\",\"customer_id\":\"920\",\"customer\":\"Michael\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1900\",\"total_discount\":\"1900.0000\",\"order_discount\":\"1900.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"36100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:48:52\",\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"36100.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\":\"4729e34a538d7631b9f61310729e6d63b3a020cc2309e9be965dfa7889682eba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1868\",\"sale_id\":\"1077\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2927, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1071\",\"date\":\"2024-12-27 14:30:00\",\"reference_no\":\"SALE0177\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:15:22\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"7b2c07b66f03cd7b4e51644107ca27c6b7c99c13ad613e632b7a60ea8163b0ae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1853\",\"sale_id\":\"1071\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2928, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1078\",\"date\":\"2024-12-27 13:30:00\",\"reference_no\":\"SALE0184\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:52:08\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2200.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\":\"b7b453c470133cba218020ed504f59b70dfb4c1e5eed5d17ef43edce4f950fdc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1871\",\"sale_id\":\"1078\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1872\",\"sale_id\":\"1078\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2929, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1070\",\"date\":\"2024-12-27 13:30:00\",\"reference_no\":\"SALE0176\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:12:08\",\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"900.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\":\"95015a1fb0930f1669d158805ef8a868e166728d1230bd4c5800421041a9b417\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1848\",\"sale_id\":\"1070\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.4500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.4500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2930, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1069\",\"date\":\"2024-12-27 13:30:00\",\"reference_no\":\"SALE0175\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"31000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:12:32\",\"total_items\":\"19\",\"pos\":\"0\",\"paid\":\"31000.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\":\"9095ff1cfca7deb686a00378c3445a87d1aaf551559f7afd966c108457ba6f16\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1849\",\"sale_id\":\"1069\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1850\",\"sale_id\":\"1069\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1851\",\"sale_id\":\"1069\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2931, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1076\",\"date\":\"2024-12-27 13:25:00\",\"reference_no\":\"SALE0182\",\"customer_id\":\"919\",\"customer\":\"samson  cucumber\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"325\",\"total_discount\":\"325.0000\",\"order_discount\":\"325.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:42:14\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2600.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\":\"76feb0becf2f29ea944676618d50aa56c8acb302d67cf23706a8ecf199b7fae2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1866\",\"sale_id\":\"1076\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2932, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1074\",\"date\":\"2024-12-27 12:21:00\",\"reference_no\":\"SALE0180\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:24:37\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2900.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\":\"ffc35bdce1f477098acfd0c191de9abb6970c17d8ad4d20b34ed18572ee46914\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1859\",\"sale_id\":\"1074\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1860\",\"sale_id\":\"1074\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.4500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.4500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2933, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1057\",\"date\":\"2024-12-27 11:30:00\",\"reference_no\":\"SALE0163\",\"customer_id\":\"911\",\"customer\":\"Johnson Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:04:38\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"5a28996106b85a08948d6befe23e739c4c786e22a8939727ce97dea1894632c0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1823\",\"sale_id\":\"1057\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2934, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1075\",\"date\":\"2024-12-27 11:25:00\",\"reference_no\":\"SALE0181\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:32:12\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7300.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\":\"c52938bcdd87e26b978fa5fa49630aed680ac1be07454eed615159efbcf52b44\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1863\",\"sale_id\":\"1075\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1864\",\"sale_id\":\"1075\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.6500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.6500\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2935, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1055\",\"date\":\"2024-12-27 10:53:00\",\"reference_no\":\"SALE0161\",\"customer_id\":\"910\",\"customer\":\"Peter Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 09:03:04\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"da3c6029c0775c50f0bafd1dc9233299de5c17bcdc93ecc0a4f8a09cd5126d31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2022\",\"sale_id\":\"1055\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2936, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1072\",\"date\":\"2024-12-27 10:30:00\",\"reference_no\":\"SALE0178\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 12:18:51\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4000.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\":\"bd088ceec6d633d4e8423341268801af8dae1d28f45c46a61f2c9c3a4ada170e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1855\",\"sale_id\":\"1072\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2937, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1059\",\"date\":\"2024-12-27 10:30:00\",\"reference_no\":\"SALE0165\",\"customer_id\":\"914\",\"customer\":\"Richard Migwi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"6000.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\":\"cf696e6c060ca0ce4313b1b207ac8dc3687a721b17a2c0cc0f7421c2fe7434a9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1826\",\"sale_id\":\"1059\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2938, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1073\",\"date\":\"2024-12-27 09:30:00\",\"reference_no\":\"SALE0179\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"7c2dfb4d57ba3ce91cbad736c6367d66fc01b4c1cb89e79eadd9333c5405d485\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1856\",\"sale_id\":\"1073\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2939, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1065\",\"date\":\"2024-12-26 11:45:00\",\"reference_no\":\"SALE0171\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:48:21\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"8200.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\":\"fe1f192c6df5b8870f7d1cabc93f8609c9562e4210267a2dcea5b64d65f8aaf7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1836\",\"sale_id\":\"1065\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1837\",\"sale_id\":\"1065\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2940, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1064\",\"date\":\"2024-12-26 10:50:00\",\"reference_no\":\"SALE0170\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"80000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"80000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:44:47\",\"total_items\":\"40\",\"pos\":\"0\",\"paid\":\"80000.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\":\"05b8c52794ee19eab5cd2f858b653a5b525e9d90ed786a9d44dd518331bebc58\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1833\",\"sale_id\":\"1064\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2941, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1054\",\"date\":\"2024-12-26 10:50:00\",\"reference_no\":\"SALE0160\",\"customer_id\":\"909\",\"customer\":\"Charles Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 10:49:05\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d1cc3c8ead27071a3d80ed62e6b2670ca1c7b9f149ca482a688780dedeb04777\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1818\",\"sale_id\":\"1054\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2942, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1066\",\"date\":\"2024-12-26 10:35:00\",\"reference_no\":\"SALE0172\",\"customer_id\":\"908\",\"customer\":\"Jane Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1000\",\"total_discount\":\"1000.0000\",\"order_discount\":\"1000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 09:28:09\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"19000.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\":\"232c03472785b5e11d0e4724503d9d51e516d364f76541f4a634adddfdda5ac6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1882\",\"sale_id\":\"1066\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2943, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1053\",\"date\":\"2024-12-24 13:39:00\",\"reference_no\":\"SALE0159\",\"customer_id\":\"907\",\"customer\":\"Ambrose Bundi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"800.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\":\"896a8a773ada8e13a006a5b4a6666e00f3548f0136db279e810675e04c7dc92b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1816\",\"sale_id\":\"1053\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.4000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.4000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2944, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1052\",\"date\":\"2024-12-24 13:35:00\",\"reference_no\":\"SALE0158\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"6000.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\":\"85bfca1818c16983cfa7cdd50ca9eba4142f536e89f4b168733e2c19e63d9903\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1815\",\"sale_id\":\"1052\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2945, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1051\",\"date\":\"2024-12-24 13:31:00\",\"reference_no\":\"SALE0157\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"350.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\":\"733be00953bb185842748768230b96632c78cf0aaf2086effe47824371f04912\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1814\",\"sale_id\":\"1051\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2946, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1050\",\"date\":\"2024-12-24 13:27:00\",\"reference_no\":\"SALE0156\",\"customer_id\":\"906\",\"customer\":\"John muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14950.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"23\",\"pos\":\"0\",\"paid\":\"14950.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\":\"512a196ba5e7301525f8fc21961a3fef76b5398b2a470e7cd4baaec2c7f087d6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1813\",\"sale_id\":\"1050\",\"product_id\":\"1109\",\"product_code\":\"91872895\",\"product_name\":\"royal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14950.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"23.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2947, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1049\",\"date\":\"2024-12-24 13:23:00\",\"reference_no\":\"SALE0155\",\"customer_id\":\"905\",\"customer\":\"patrick murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"d020ffbc9cb929b36726cfdfbe67b2fb219a675d29432893a84a079ba2b25796\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1812\",\"sale_id\":\"1049\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2948, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1048\",\"date\":\"2024-12-24 13:12:00\",\"reference_no\":\"SALE0154\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"2200\",\"total_discount\":\"2200.0000\",\"order_discount\":\"2200.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"41800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"0\",\"paid\":\"40900.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\":\"1f2a02dd47fd40cf47b6a82715124e1267cb19533606074986d8afb108810453\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1811\",\"sale_id\":\"1048\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2949, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1047\",\"date\":\"2024-12-24 13:01:00\",\"reference_no\":\"SALE0153\",\"customer_id\":\"904\",\"customer\":\"david mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"33000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"0\",\"paid\":\"33000.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\":\"853d3dddb797ced29c13a1dd2fee4f2010acbbd01ee0aae1508716a55e39b629\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1810\",\"sale_id\":\"1047\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"33000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2950, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1046\",\"date\":\"2024-12-24 12:58:00\",\"reference_no\":\"SALE0152\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"0977d503c4209de5a34040d8fa52c47f1b41d3369d45fc270cd1e7ac88befd4b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1809\",\"sale_id\":\"1046\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2951, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1045\",\"date\":\"2024-12-24 12:54:00\",\"reference_no\":\"SALE0151\",\"customer_id\":\"890\",\"customer\":\"Benson Mugweru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"11500.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\":\"d5e00d3e8d3128982863a452900df1185446bde35b70f995f157bbba1c32b146\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1808\",\"sale_id\":\"1045\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2952, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1044\",\"date\":\"2024-12-24 12:48:00\",\"reference_no\":\"SALE0150\",\"customer_id\":\"903\",\"customer\":\"leonard\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4200.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\":\"2f7c48419f0df0558cfb19e2cd9b7f0474e82f337182f5e833e19b9292cc259b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1805\",\"sale_id\":\"1044\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2953, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1043\",\"date\":\"2024-12-24 12:41:00\",\"reference_no\":\"SALE0149\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"1300\",\"total_discount\":\"1300.0000\",\"order_discount\":\"1300.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"18000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-06 15:21:43\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"18000.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\":\"50d67eede544c1dd2ef4735f8b24c2aa4a3c5ca4acd7b1cc5bc339a94b44bb84\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1994\",\"sale_id\":\"1043\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1995\",\"sale_id\":\"1043\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1996\",\"sale_id\":\"1043\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2954, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1042\",\"date\":\"2024-12-24 12:33:00\",\"reference_no\":\"SALE0148\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"99d7fe652aa9a41b33406f1e4a1399bc12861d856215b6fdfd1d313ef75f8c07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1802\",\"sale_id\":\"1042\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2955, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1041\",\"date\":\"2024-12-24 12:32:00\",\"reference_no\":\"SALE0147\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2100.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\":\"6ade3f8b14fd42b6e409b447416617c4877389abf2a4c0022a699d4b975ffd9a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1801\",\"sale_id\":\"1041\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2956, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1040\",\"date\":\"2024-12-24 10:45:00\",\"reference_no\":\"SALE0146\",\"customer_id\":\"902\",\"customer\":\"Amos Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"7c362cf55ef53388ed72d6608c2ba6d1b8a5de44ab49e408ef9de2a0a37022d9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1800\",\"sale_id\":\"1040\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2957, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1039\",\"date\":\"2024-12-24 10:37:00\",\"reference_no\":\"SALE0145\",\"customer_id\":\"901\",\"customer\":\"Benson\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"700\",\"total_discount\":\"700.0000\",\"order_discount\":\"700.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-24 12:42:45\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"13300.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\":\"695d00806b51fa434264b1463c752c06888682726c48d91d9691566b6c79e87f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1804\",\"sale_id\":\"1039\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2958, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1038\",\"date\":\"2024-12-24 10:20:00\",\"reference_no\":\"SALE0144\",\"customer_id\":\"900\",\"customer\":\"Cyrus Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22425.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22425.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"35\",\"pos\":\"0\",\"paid\":\"9000.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\":\"417b13b8c6b0ea1e7fd4ccae4e545e75a2f8fe876e6e542e75331556431fa072\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1796\",\"sale_id\":\"1038\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"33.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21775.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"33.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"1797\",\"sale_id\":\"1038\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2959, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1037\",\"date\":\"2024-12-24 09:41:00\",\"reference_no\":\"SALE0143\",\"customer_id\":\"899\",\"customer\":\"Joseph Kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"800\",\"total_discount\":\"800.0000\",\"order_discount\":\"800.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"4000.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\":\"ce02afabf0c63c0b2265c71bc249498b99406c4084621e43111cabd1057dd7c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1795\",\"sale_id\":\"1037\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2960, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1036\",\"date\":\"2024-12-24 09:36:00\",\"reference_no\":\"SALE0142\",\"customer_id\":\"898\",\"customer\":\"Benson muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"100\",\"total_discount\":\"100.0000\",\"order_discount\":\"100.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 15:44:24\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"19f201bdbe79b7f5b162d6da1a7b60313437b971639a656db4a03062aeb9177d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2113\",\"sale_id\":\"1036\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2961, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1033\",\"date\":\"2024-12-23 16:41:00\",\"reference_no\":\"SALE0139\",\"customer_id\":\"896\",\"customer\":\"samuel maringa\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2000.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\":\"97305bbb1114062bac1658299d65d06ba1fd051c94b09208b8330fc197a695ea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1789\",\"sale_id\":\"1033\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2962, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1032\",\"date\":\"2024-12-23 16:37:00\",\"reference_no\":\"SALE0138\",\"customer_id\":\"895\",\"customer\":\"lucy njiraini\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"500\",\"total_discount\":\"500.0000\",\"order_discount\":\"500.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-07 15:59:49\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"9500.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\":\"bfb3db5c80fcdc107bf7696f53edb42abba6a26347af2557d656a0a370498e06\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2021\",\"sale_id\":\"1032\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2963, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1031\",\"date\":\"2024-12-23 15:52:00\",\"reference_no\":\"SALE0137\",\"customer_id\":\"893\",\"customer\":\"Geoffrey muriiithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2400.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\":\"4a087bbc9500d6aa572f8f8cfcfceb47ae5f1104620b93084add9ec478417fe2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1786\",\"sale_id\":\"1031\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"},{\"id\":\"1787\",\"sale_id\":\"1031\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2964, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1030\",\"date\":\"2024-12-23 15:34:00\",\"reference_no\":\"SALE0136\",\"customer_id\":\"892\",\"customer\":\"priscillah wanjira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"800\",\"total_discount\":\"800.0000\",\"order_discount\":\"800.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-24 10:32:12\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"0febbce0c461345a812e2901cc2140aa98e443a8116872f71bd7d39345fa9ec5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1798\",\"sale_id\":\"1030\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2965, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1029\",\"date\":\"2024-12-23 15:28:00\",\"reference_no\":\"SALE0135\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1600.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\":\"726d1c39b60e1596407fb3d8794af240004565b0d87a6ad3faf7cdad8ae8cffd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1784\",\"sale_id\":\"1029\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2966, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1025\",\"date\":\"2024-12-23 14:12:00\",\"reference_no\":\"SALE0131\",\"customer_id\":\"888\",\"customer\":\"Zachaeus Gachuru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"12000.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\":\"de81cbe9d866f52a828875e68c77a842b26e25e282a57b0cf43ad43931e04655\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1780\",\"sale_id\":\"1025\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2967, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1022\",\"date\":\"2024-12-23 13:07:00\",\"reference_no\":\"SALE0128\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"6000.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\":\"668ecea63c2041369c6cf3d6a919dda5ce0988ce6d3ca90789b398754ddd57d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1774\",\"sale_id\":\"1022\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2968, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1020\",\"date\":\"2024-12-23 13:04:00\",\"reference_no\":\"SALE0126\",\"customer_id\":\"124\",\"customer\":\"Dan Muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;paid 80 sharp propagation&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"80\",\"pos\":\"0\",\"paid\":\"1600.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\":\"2ea960a6be01929e7c013023363323882edbcd208b81c536bf50407fb488a10f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1772\",\"sale_id\":\"1020\",\"product_id\":\"1106\",\"product_code\":\"46426438\",\"product_name\":\"paw paws propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"20.0000\",\"unit_price\":\"20.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"80.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2969, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1019\",\"date\":\"2024-12-23 11:51:00\",\"reference_no\":\"SALE0125\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"6000.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\":\"75104754b816dc44bcc4578dd1bcf2341492678205e35a940d0ba676a1c7ca5e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1771\",\"sale_id\":\"1019\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2970, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1018\",\"date\":\"2024-12-23 11:03:00\",\"reference_no\":\"SALE0124\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"5fc3f6451568f4bc7db06422a2226ef481b4a4c5dd0715a450bbb0a73264d886\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1770\",\"sale_id\":\"1018\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2971, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1017\",\"date\":\"2024-12-21 14:35:00\",\"reference_no\":\"SALE0123\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"4000.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\":\"178e01126fdfb0b1873e228f69ef9f7d776118f73a8bfd88220ece492bf0f76f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1769\",\"sale_id\":\"1017\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2972, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1016\",\"date\":\"2024-12-21 14:32:00\",\"reference_no\":\"SALE0122\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2000.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\":\"86b6874dbc42745aa9dc3a6c73d1420e3696258c44ddfb71046669ebaf2df1ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1768\",\"sale_id\":\"1016\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2973, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1015\",\"date\":\"2024-12-21 14:27:00\",\"reference_no\":\"SALE0121\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3900.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\":\"f9da2830bfbbc46e43fe10a245797cff525eefe58ebe7392c0cf48b95d58d025\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1767\",\"sale_id\":\"1015\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2974, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1014\",\"date\":\"2024-12-21 14:12:00\",\"reference_no\":\"SALE0120\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"1400.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\":\"eaccf92391d0706068770106e26f6844781248287c1c7f9ecdc0e18da73c992e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1766\",\"sale_id\":\"1014\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2975, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1013\",\"date\":\"2024-12-21 09:59:00\",\"reference_no\":\"SALE0119\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"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\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"2000.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\":\"3149c61328bee96f11af8a917c1e53d8372cb4b39bbc13cfee134e0e4f7ca764\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1765\",\"sale_id\":\"1013\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2976, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1012\",\"date\":\"2024-12-21 09:34:00\",\"reference_no\":\"SALE0118\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1300.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\":\"d42133c6610f9969053b8cfba44b13276a548a46993897829a254cd746a33144\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1764\",\"sale_id\":\"1012\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"tomato royal705\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2977, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1011\",\"date\":\"2024-12-20 16:48:00\",\"reference_no\":\"SALE0117\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d016d136034c523f5b5d8300dfae7c24e11084601ce94ddafbe7e43540341180\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1763\",\"sale_id\":\"1011\",\"product_id\":\"963\",\"product_code\":\"28833838\",\"product_name\":\"capsicum s.bell f1\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2978, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1289\",\"date\":\"2024-12-19 17:08:00\",\"reference_no\":\"SALE0395\",\"customer_id\":\"1045\",\"customer\":\"Samuel Muriuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43875.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"43875.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"68\",\"pos\":\"0\",\"paid\":\"43875.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\":\"4bf17050cc9536cc5eaae8511cb347b5c4fe6efc499fbb47b1149e145c53d59f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2225\",\"sale_id\":\"1289\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"67.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"43875.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"67.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2979, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1323\",\"date\":\"2024-12-18 15:04:00\",\"reference_no\":\"SALE0429\",\"customer_id\":\"1072\",\"customer\":\"peter muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"152000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"152000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-25 08:56:54\",\"total_items\":\"80\",\"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\":\"84d94e7087da961deb9c5d543b57b26be36f98d70979b466f1fa4601b90795fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2339\",\"sale_id\":\"1323\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"152000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"80.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2980, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1234\",\"date\":\"2024-12-16 13:24:00\",\"reference_no\":\"SALE0340\",\"customer_id\":\"1009\",\"customer\":\"david mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-13 13:26:08\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"22800.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\":\"9514120c320f18c3400ce3fd8d469b2bd02946d356bc3eb5e7056cccb8bf83d2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2138\",\"sale_id\":\"1234\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2981, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1536\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0642\",\"customer_id\":\"1222\",\"customer\":\"John Gitonga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-10 10:42:00\",\"total_items\":\"11\",\"pos\":\"0\",\"paid\":\"7150.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\":\"1864dee0afd08cdded8c7c2b85c5f78a7e0292f3d00842396f588c6b1b6228cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2675\",\"sale_id\":\"1536\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"11.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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2982, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1325\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0431\",\"customer_id\":\"303\",\"customer\":\"Peter Njuguna\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 09:34:46\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"15200.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\":\"308ddf4badc26bb7cf3db4c1f8a6508658e4f24d6164126f3587111477e59f72\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2286\",\"sale_id\":\"1325\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2983, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1185\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0291\",\"customer_id\":\"960\",\"customer\":\"stephen njiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:24:46\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"54aa085e6a9752f441ac6ad09d7c2f6ea5c0412dd5bace53328f0234dfe15a14\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2039\",\"sale_id\":\"1185\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 11:48:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2984, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"65\",\"reference_no\":\"PO0057\",\"date\":\"2025-02-01 16:19:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"702\",\"purchase_id\":\"65\",\"transfer_id\":null,\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"100.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"100.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"100.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2985, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"64\",\"reference_no\":\"PO0056\",\"date\":\"2025-02-01 16:16:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 16:22:19\",\"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\":\"704\",\"purchase_id\":\"64\",\"transfer_id\":null,\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"51.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"23.7100\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"51.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"51.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2986, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"63\",\"reference_no\":\"PO0055\",\"date\":\"2025-02-01 16:15:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"699\",\"purchase_id\":\"63\",\"transfer_id\":null,\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"270.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"270.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"270.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"270.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2987, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"62\",\"reference_no\":\"PO0054\",\"date\":\"2025-02-01 16:15:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"698\",\"purchase_id\":\"62\",\"transfer_id\":null,\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"24.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2988, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"61\",\"reference_no\":\"PO0053\",\"date\":\"2025-02-01 16:15:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"697\",\"purchase_id\":\"61\",\"transfer_id\":null,\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2989, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"60\",\"reference_no\":\"PO0052\",\"date\":\"2025-02-01 16:15:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"696\",\"purchase_id\":\"60\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"134.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"134.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"134.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2990, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"59\",\"reference_no\":\"PO0051\",\"date\":\"2025-02-01 16:14:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"695\",\"purchase_id\":\"59\",\"transfer_id\":null,\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"24.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2991, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"58\",\"reference_no\":\"PO0050\",\"date\":\"2025-02-01 16:14:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"694\",\"purchase_id\":\"58\",\"transfer_id\":null,\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"255.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"255.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"255.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"255.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2992, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"57\",\"reference_no\":\"PO0049\",\"date\":\"2025-02-01 16:06:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"693\",\"purchase_id\":\"57\",\"transfer_id\":null,\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2025-02-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2993, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"56\",\"reference_no\":\"PO0048\",\"date\":\"2025-01-14 10:23:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"689\",\"purchase_id\":\"56\",\"transfer_id\":null,\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"56.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"56.0000\",\"date\":\"2025-01-14\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"56.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"56.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2994, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"55\",\"reference_no\":\"PO0047\",\"date\":\"2024-12-31 09:52:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"687\",\"purchase_id\":\"55\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"281.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"281.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"281.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2995, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"54\",\"reference_no\":\"PO0046\",\"date\":\"2024-12-31 09:52:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"686\",\"purchase_id\":\"54\",\"transfer_id\":null,\"product_id\":\"1057\",\"product_code\":\"20183289\",\"product_name\":\"sukuma matumbo\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2996, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"53\",\"reference_no\":\"PO0045\",\"date\":\"2024-12-31 09:50:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"685\",\"purchase_id\":\"53\",\"transfer_id\":null,\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.2500\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"25.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2997, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"52\",\"reference_no\":\"PO0044\",\"date\":\"2024-12-31 09:49:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"684\",\"purchase_id\":\"52\",\"transfer_id\":null,\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"71.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"62.0000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"71.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"71.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2998, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"51\",\"reference_no\":\"PO0043\",\"date\":\"2024-12-31 09:48:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"683\",\"purchase_id\":\"51\",\"transfer_id\":null,\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"14.8700\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"25.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2999, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"50\",\"reference_no\":\"PO0042\",\"date\":\"2024-12-31 09:48:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"682\",\"purchase_id\":\"50\",\"transfer_id\":null,\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"21.0000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"21.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3000, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"49\",\"reference_no\":\"PO0041\",\"date\":\"2024-12-31 09:43:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-31 09:56:02\",\"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\":\"688\",\"purchase_id\":\"49\",\"transfer_id\":null,\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"302.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"355.6000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"302.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"302.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3001, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"48\",\"reference_no\":\"PO0040\",\"date\":\"2024-12-31 09:42:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"680\",\"purchase_id\":\"48\",\"transfer_id\":null,\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"245.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"239.5000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"245.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"245.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3002, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"47\",\"reference_no\":\"PO0039\",\"date\":\"2024-12-31 09:41:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"679\",\"purchase_id\":\"47\",\"transfer_id\":null,\"product_id\":\"997\",\"product_code\":\"17040387\",\"product_name\":\"gloria\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"11.0000\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"11.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3003, 'Purchase is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"46\",\"reference_no\":\"PO0038\",\"date\":\"2024-12-31 09:39:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"paid\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-01 16:22:49\",\"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\":\"705\",\"purchase_id\":\"46\",\"transfer_id\":null,\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"16.6750\",\"date\":\"2024-12-31\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"16.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-02-18 11:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3004, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"488\",\"date\":\"2025-02-18 08:46:00\",\"reference_no\":\"QUOTE0486\",\"customer_id\":\"917\",\"customer\":\"Peterson Mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"286c7a3db987cfa2ec403dfce3ea88cba3e76493944aa038ef9d1152a5645a49\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"564\",\"quote_id\":\"488\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3005, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"487\",\"date\":\"2025-02-18 08:43:00\",\"reference_no\":\"QUOTE0485\",\"customer_id\":\"1179\",\"customer\":\"Nicholas mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dbcb26debdab1ab63c0ee4d656afcfc20acf8362da30ec448e8ae9cd501a7c97\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"563\",\"quote_id\":\"487\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3006, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"485\",\"date\":\"2025-02-18 08:38:00\",\"reference_no\":\"QUOTE0483\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b8b81e5c2613fe883f9a4b686b01d26fa87408eca38ca95001f54cc0c35fcf4e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"561\",\"quote_id\":\"485\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3007, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"484\",\"date\":\"2025-02-18 08:37:00\",\"reference_no\":\"QUOTE0482\",\"customer_id\":\"210\",\"customer\":\"Ibra\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a7712473dc2eb13dcc3973eec4a48d92f86580183fa0bba3548f4742d02d2abf\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"560\",\"quote_id\":\"484\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3008, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"489\",\"date\":\"2025-02-17 08:51:00\",\"reference_no\":\"QUOTE0487\",\"customer_id\":\"146\",\"customer\":\"Pastor\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5100.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f6b5728053eac72dcdeb8597649bcc12a13bd250132389e4523d4fa47a601e97\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"565\",\"quote_id\":\"489\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"566\",\"quote_id\":\"489\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3009, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"486\",\"date\":\"2025-02-17 08:39:00\",\"reference_no\":\"QUOTE0484\",\"customer_id\":\"892\",\"customer\":\"priscillah wanjira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"153f2b311f955b277040d5eed3b87fdd8a540c29c4ac5cc39c2effbb118c25bc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"562\",\"quote_id\":\"486\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3010, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"483\",\"date\":\"2025-02-17 08:31:00\",\"reference_no\":\"QUOTE0481\",\"customer_id\":\"1290\",\"customer\":\"Jonathan\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bde93cd6df63c48a28410e13e357030c08efe0bf8225c1f5216499b5125eeabd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"559\",\"quote_id\":\"483\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3011, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"481\",\"date\":\"2025-02-15 12:01:00\",\"reference_no\":\"QUOTE0479\",\"customer_id\":\"1288\",\"customer\":\"Francis Mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1d47305ce54d24b02cdf7fa96fbd7e2fcf2914f8d6ac307382a2a9eb2a8f2ac9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"557\",\"quote_id\":\"481\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3012, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"480\",\"date\":\"2025-02-15 11:58:00\",\"reference_no\":\"QUOTE0478\",\"customer_id\":\"1287\",\"customer\":\"Fredrick Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e9c92c0b3c79f42e4b644c041d02023311d524b8cc6dc06d47938e686a5cfd6c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"556\",\"quote_id\":\"480\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3013, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"479\",\"date\":\"2025-02-15 11:53:00\",\"reference_no\":\"QUOTE0477\",\"customer_id\":\"1286\",\"customer\":\"Ephantus Bundi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fa25c2265946c102699e462ea733d4f9b00e3cfa132c5214bad33c4610962e89\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"555\",\"quote_id\":\"479\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3014, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"478\",\"date\":\"2025-02-15 11:51:00\",\"reference_no\":\"QUOTE0476\",\"customer_id\":\"1285\",\"customer\":\"Eliud Musyimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ab236e498baab13e2db3f89c7e941e4373f44930b8d6bc5517f5919fd79b3e39\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"554\",\"quote_id\":\"478\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3015, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"477\",\"date\":\"2025-02-15 11:45:00\",\"reference_no\":\"QUOTE0475\",\"customer_id\":\"1239\",\"customer\":\"consolata wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f25d118817c306003c90e4bddb9ba93d2b1225e01cae93039ad586f32398be81\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"553\",\"quote_id\":\"477\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3016, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"476\",\"date\":\"2025-02-15 11:41:00\",\"reference_no\":\"QUOTE0474\",\"customer_id\":\"1284\",\"customer\":\"Edgar Bundi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ee53452e0d6a5f6339363b42ea698de038f8b997c32d8aefb981e4d9fd36fd51\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"552\",\"quote_id\":\"476\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3017, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"475\",\"date\":\"2025-02-15 11:38:00\",\"reference_no\":\"QUOTE0473\",\"customer_id\":\"1283\",\"customer\":\"John Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e948dd5ee3f15033a05a9565d8603382578321911b186baeb05467e5d60adb86\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"551\",\"quote_id\":\"475\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3018, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"474\",\"date\":\"2025-02-15 11:35:00\",\"reference_no\":\"QUOTE0472\",\"customer_id\":\"1282\",\"customer\":\"Monicah\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f1fa94bf9bea3d8bbd3703f1ecd683092c07e7624d80514784bf34cf16642131\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"550\",\"quote_id\":\"474\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3019, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"472\",\"date\":\"2025-02-15 11:10:00\",\"reference_no\":\"QUOTE0470\",\"customer_id\":\"1281\",\"customer\":\"Paul ngari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"aadf46d661c8d7fd1878d18fba75b6c41ac34fa8cd599b033d36b6a399c22ea9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"548\",\"quote_id\":\"472\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3020, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"471\",\"date\":\"2025-02-15 10:54:00\",\"reference_no\":\"QUOTE0469\",\"customer_id\":\"1280\",\"customer\":\"Nahashon wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9ca79fb4f353f21866c454b2420db2d6f55632236fff968fee424312ab887659\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"546\",\"quote_id\":\"471\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"547\",\"quote_id\":\"471\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3021, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"470\",\"date\":\"2025-02-15 10:52:00\",\"reference_no\":\"QUOTE0468\",\"customer_id\":\"1279\",\"customer\":\"Pauline Gitika\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a67173c2095aee6589ef3e59275c5576cea29b3e4c3a8210e2ab6080acc655f7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"545\",\"quote_id\":\"470\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3022, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"469\",\"date\":\"2025-02-15 10:47:00\",\"reference_no\":\"QUOTE0467\",\"customer_id\":\"1278\",\"customer\":\"Stephen muthee\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c623e503dbd8ab604c280524d7c2a2f18b5ca4a58235ed55c18e37994247517e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"544\",\"quote_id\":\"469\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3023, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"468\",\"date\":\"2025-02-15 10:45:00\",\"reference_no\":\"QUOTE0466\",\"customer_id\":\"1013\",\"customer\":\"leonard muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0cbc9ca52fad2170378df2ef8ae1f3629d10b9c1483aca8e13a50121e25e8803\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"543\",\"quote_id\":\"468\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3024, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"467\",\"date\":\"2025-02-15 10:39:00\",\"reference_no\":\"QUOTE0465\",\"customer_id\":\"907\",\"customer\":\"Ambrose Bundi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"91bf3bc69991f48dec31122a6a8af267d823a6f4877f532f1f05a73f223c5cac\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"542\",\"quote_id\":\"467\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3025, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"466\",\"date\":\"2025-02-15 10:26:00\",\"reference_no\":\"QUOTE0464\",\"customer_id\":\"1277\",\"customer\":\"Festus musau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"986eaf1aae3f8db0e976a3c64a69bb7b5665bc8a4634f5708a7d93fc8dfd66b1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"541\",\"quote_id\":\"466\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3026, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"465\",\"date\":\"2025-02-15 10:23:00\",\"reference_no\":\"QUOTE0463\",\"customer_id\":\"1276\",\"customer\":\"joseph kimani muthami\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"71c40bc42fbd34dc7b67abbbfd313abfb5744921c2179e8a1c9667a5ef797a19\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"540\",\"quote_id\":\"465\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3027, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"464\",\"date\":\"2025-02-15 10:06:00\",\"reference_no\":\"QUOTE0462\",\"customer_id\":\"1275\",\"customer\":\"John mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"47500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"47500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7af2eca3a30da7f950cac61d380e45d31b6a985d3fe1db874088c0117a08a067\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"539\",\"quote_id\":\"464\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"47500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3028, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"473\",\"date\":\"2025-02-14 11:30:00\",\"reference_no\":\"QUOTE0471\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"45fab949d63ed92b5c2acf215fed4632a9f4ba704eeea06b2886db298713011d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"549\",\"quote_id\":\"473\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3029, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"463\",\"date\":\"2025-02-13 16:50:00\",\"reference_no\":\"QUOTE0461\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c3ec99806988d3c2464e372272cb268576bc80f598c131165e9bfd0ae360a2d1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"538\",\"quote_id\":\"463\",\"product_id\":\"1111\",\"product_code\":\"42936668\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3030, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"462\",\"date\":\"2025-02-13 16:49:00\",\"reference_no\":\"QUOTE0460\",\"customer_id\":\"1274\",\"customer\":\"antony murimi ansal\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"21850.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21850.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7d33dadb727d78127d9270673a51f7cc6429f3327b5bd5eacb6f0630120c32c3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"537\",\"quote_id\":\"462\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21850.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3031, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"461\",\"date\":\"2025-02-13 16:45:00\",\"reference_no\":\"QUOTE0459\",\"customer_id\":\"1273\",\"customer\":\"Derrick Kangangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2f3e7b6ee6238365551f6836ddbbd99ba2d1d48d81517c4c904e9d5fb6ccdff0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"536\",\"quote_id\":\"461\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3032, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"460\",\"date\":\"2025-02-13 16:43:00\",\"reference_no\":\"QUOTE0458\",\"customer_id\":\"1272\",\"customer\":\"Richard Hoho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8d154a40ca0f06bccc1489860d2dd2cdc24de21f8e1fa25eda957bdb260c6233\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"535\",\"quote_id\":\"460\",\"product_id\":\"1136\",\"product_code\":\"12719713\",\"product_name\":\"siri\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3033, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"459\",\"date\":\"2025-02-13 16:37:00\",\"reference_no\":\"QUOTE0457\",\"customer_id\":\"1185\",\"customer\":\"SIMON MUTHIKE\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"57d24ca0f6794c6756396c58494b4d1448cba7b6f56a1f4365dd6a314ed4b826\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"534\",\"quote_id\":\"459\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3034, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"458\",\"date\":\"2025-02-13 16:36:00\",\"reference_no\":\"QUOTE0456\",\"customer_id\":\"1271\",\"customer\":\"Mary Mugo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13650.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13650.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ea299a600c869a62bbf7e5476399abdd0f86772496e2f15fbb559d084d570668\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"533\",\"quote_id\":\"458\",\"product_id\":\"1135\",\"product_code\":\"04508794\",\"product_name\":\"chillins\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13650.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3035, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"457\",\"date\":\"2025-02-13 16:31:00\",\"reference_no\":\"QUOTE0455\",\"customer_id\":\"1270\",\"customer\":\"Jane Wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a0ea590402a7125b73e765752be83d9dba1497644321a1a17ab9e7c164ef71fc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"532\",\"quote_id\":\"457\",\"product_id\":\"1133\",\"product_code\":\"53798315\",\"product_name\":\"Thorn melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3036, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"456\",\"date\":\"2025-02-13 16:27:00\",\"reference_no\":\"QUOTE0454\",\"customer_id\":\"1269\",\"customer\":\"Stanley Wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1950.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1950.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8d4a8b34aff91ca65cdea31010f460d65f0452c6ad9402521cb29d81701e9836\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"531\",\"quote_id\":\"456\",\"product_id\":\"1111\",\"product_code\":\"42936668\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1950.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3037, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"455\",\"date\":\"2025-02-13 16:20:00\",\"reference_no\":\"QUOTE0453\",\"customer_id\":\"1268\",\"customer\":\"Samuel  Kangeche\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7215.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7215.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"033c382fcb4b966eda948459a90a35bd7056636eb26577db5cdaf2c5315b89b9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"530\",\"quote_id\":\"455\",\"product_id\":\"1134\",\"product_code\":\"95195228\",\"product_name\":\"Long purple\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.1000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7215.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"11.1000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3038, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"454\",\"date\":\"2025-02-13 16:15:00\",\"reference_no\":\"QUOTE0452\",\"customer_id\":\"1159\",\"customer\":\"Anthhony murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12675.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12675.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"98597617fef7b4464861465d6881a46b26b8f443a63176bb697b649b1a43d6e8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"529\",\"quote_id\":\"454\",\"product_id\":\"1122\",\"product_code\":\"75722675\",\"product_name\":\"Rionex propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12675.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3039, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"453\",\"date\":\"2025-02-13 16:14:00\",\"reference_no\":\"QUOTE0451\",\"customer_id\":\"1267\",\"customer\":\"Moses Njega\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a0cf77823e04d89af62735e7519208fc3c63b1be36db0f2d0ad2f857e3aa091d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"528\",\"quote_id\":\"453\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3040, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"452\",\"date\":\"2025-02-13 16:12:00\",\"reference_no\":\"QUOTE0450\",\"customer_id\":\"341\",\"customer\":\"Joel  Kihohia\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2f4b2142fb91900aa1ef7876c819f6878d31bf327059a8ad922d78644a687060\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"527\",\"quote_id\":\"452\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3041, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"451\",\"date\":\"2025-02-13 16:10:00\",\"reference_no\":\"QUOTE0449\",\"customer_id\":\"1266\",\"customer\":\"Titus Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6d7d2c624c523407539c21523e2907727076b7a674c49c2d8167423721b114f6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"526\",\"quote_id\":\"451\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3042, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"450\",\"date\":\"2025-02-13 16:07:00\",\"reference_no\":\"QUOTE0448\",\"customer_id\":\"1265\",\"customer\":\"Samuel Kamau cucumber\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"975.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"975.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ebf91a2e3ca44a82dbbed2e9f5dee59df46f7c3672045452808b22e6967b76c6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"525\",\"quote_id\":\"450\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"975.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3043, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"449\",\"date\":\"2025-02-13 16:04:00\",\"reference_no\":\"QUOTE0447\",\"customer_id\":\"1264\",\"customer\":\"Simon Muchoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3250.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3250.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7753dc29106cb06021af5fa10c8abb0244f7023754100f6e8fd5b7f289d54a6a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"524\",\"quote_id\":\"449\",\"product_id\":\"1133\",\"product_code\":\"53798315\",\"product_name\":\"Thorn melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3044, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"448\",\"date\":\"2025-02-13 15:59:00\",\"reference_no\":\"QUOTE0446\",\"customer_id\":\"1263\",\"customer\":\"Wa Migwi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8922ee0751d92f0378d0d5a864c9c2851158a15de6a815d7a0530aa8afaebef3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"523\",\"quote_id\":\"448\",\"product_id\":\"1132\",\"product_code\":\"38049398\",\"product_name\":\"To 135\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3045, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"447\",\"date\":\"2025-02-13 15:52:00\",\"reference_no\":\"QUOTE0445\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"324afee21683699eecdf6f64812603ac38471837a386bff9ce2a5869ddb397ef\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"522\",\"quote_id\":\"447\",\"product_id\":\"1101\",\"product_code\":\"42441894\",\"product_name\":\"star 9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3046, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"446\",\"date\":\"2025-02-13 15:42:00\",\"reference_no\":\"QUOTE0444\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22165.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22165.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"123c0c2c33f3d7e60ed5eeed71ff248ed3d3f0cdfb8564d36b410e363ebf6839\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"521\",\"quote_id\":\"446\",\"product_id\":\"1131\",\"product_code\":\"09465263\",\"product_name\":\"max\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"34.1000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22165.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"34.1000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3047, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"444\",\"date\":\"2025-02-13 15:28:00\",\"reference_no\":\"QUOTE0442\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e376588e1c4c12e3c1c384f0229612c14f0bf7fc49cf765721a45fe20f5b06ff\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"519\",\"quote_id\":\"444\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3048, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"443\",\"date\":\"2025-02-13 15:22:00\",\"reference_no\":\"QUOTE0441\",\"customer_id\":\"1259\",\"customer\":\"wa emmah\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6c0efed6236b90f4606d9f434b696705d1fc3f9c33d7205b0389311ee2c5272b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"518\",\"quote_id\":\"443\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3049, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"442\",\"date\":\"2025-02-13 15:15:00\",\"reference_no\":\"QUOTE0440\",\"customer_id\":\"1258\",\"customer\":\"Raphael muiruri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"126254fd046de14c30a9aabf188985c775959098471892f624e6a4c207e3144b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"517\",\"quote_id\":\"442\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3050, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"441\",\"date\":\"2025-02-13 15:14:00\",\"reference_no\":\"QUOTE0439\",\"customer_id\":\"788\",\"customer\":\"Paul\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"352c5dc2eac4c5fb614ec0004fe554f7d472efbed3d3b8e9b54a3fe1b203c10f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"516\",\"quote_id\":\"441\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3051, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"440\",\"date\":\"2025-02-13 15:12:00\",\"reference_no\":\"QUOTE0438\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a6811480a0afa6a87416ff598a2abcf3cb7fd135c4d5bd204b764c9a8b2d0866\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"515\",\"quote_id\":\"440\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3052, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"439\",\"date\":\"2025-02-13 15:02:00\",\"reference_no\":\"QUOTE0437\",\"customer_id\":\"788\",\"customer\":\"Paul\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1750661947588e561acae53ad5c3111eb0c8113efcb0ecf83372d9cd08d1a517\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"514\",\"quote_id\":\"439\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3053, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"438\",\"date\":\"2025-02-13 14:56:00\",\"reference_no\":\"QUOTE0436\",\"customer_id\":\"1054\",\"customer\":\"Ibra\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c801f5f59fbc5813468d713579e3c3c7bd3802f78b43e206873348ce87179613\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"513\",\"quote_id\":\"438\",\"product_id\":\"1127\",\"product_code\":\"33533655\",\"product_name\":\"mila propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3054, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"437\",\"date\":\"2025-02-13 14:55:00\",\"reference_no\":\"QUOTE0435\",\"customer_id\":\"1257\",\"customer\":\"Gatero\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"10725.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10725.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6b84cbd388e379e7131b8b639e08286aa4c58873f79b8c1313a83cb287cf0206\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"512\",\"quote_id\":\"437\",\"product_id\":\"1126\",\"product_code\":\"80226308\",\"product_name\":\"zara propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10725.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"16.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3055, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"436\",\"date\":\"2025-02-13 14:52:00\",\"reference_no\":\"QUOTE0434\",\"customer_id\":\"1256\",\"customer\":\"muriithi maringa\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bfb0c8a177e9c01b39fe4aac688bebb2ce7ff314b600eaa0ba64ac85bc1d8eda\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"510\",\"quote_id\":\"436\",\"product_id\":\"1124\",\"product_code\":\"80606522\",\"product_name\":\"victory yellow\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3850.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"511\",\"quote_id\":\"436\",\"product_id\":\"1125\",\"product_code\":\"72976730\",\"product_name\":\"victory red\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"1.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3056, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"435\",\"date\":\"2025-02-13 14:47:00\",\"reference_no\":\"QUOTE0433\",\"customer_id\":\"1255\",\"customer\":\"Benard muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"26acbb7698248c2b0300a24790a2f86b2cdcdb8fafd8b3ec6f5d0fadb9cbb494\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"509\",\"quote_id\":\"435\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3057, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"434\",\"date\":\"2025-02-13 14:46:00\",\"reference_no\":\"QUOTE0432\",\"customer_id\":\"1254\",\"customer\":\"Eugine waithaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"855f82f806ad6b15cc3c8dc47fff3680976cd9779931c50f74f834307547fad8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"508\",\"quote_id\":\"434\",\"product_id\":\"1123\",\"product_code\":\"35427124\",\"product_name\":\"queen propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3058, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"433\",\"date\":\"2025-02-13 13:49:00\",\"reference_no\":\"QUOTE0431\",\"customer_id\":\"1253\",\"customer\":\"james muthhii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a4545145cdd6eacbd151582ce32ca92f2e11d567999d044fc0d7a65b40eaa2e5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"507\",\"quote_id\":\"433\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3059, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"431\",\"date\":\"2025-02-13 13:46:00\",\"reference_no\":\"QUOTE0429\",\"customer_id\":\"1251\",\"customer\":\"peter karani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8aa3070bd3abe73d7269d88cdbaa516c2cf0ff815c653c44bce7a1232d177f87\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"505\",\"quote_id\":\"431\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3060, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"427\",\"date\":\"2025-02-13 13:32:00\",\"reference_no\":\"QUOTE0425\",\"customer_id\":\"1248\",\"customer\":\"lucy\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a1604773dd041bd4024964d58a116c11ef9edd1da5386716a3e66077777980ae\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"500\",\"quote_id\":\"427\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"501\",\"quote_id\":\"427\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3061, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"425\",\"date\":\"2025-02-13 13:22:00\",\"reference_no\":\"QUOTE0423\",\"customer_id\":\"1247\",\"customer\":\"julius karriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1e85a72a317482563f5a22f9fa8978ba82eae2378c0da68f2f1a62f85269075b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"497\",\"quote_id\":\"425\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3062, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"422\",\"date\":\"2025-02-13 13:16:00\",\"reference_no\":\"QUOTE0420\",\"customer_id\":\"1246\",\"customer\":\"Esther njoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c8b40138b42ab979b11cf6b3f8fa6e501d29b9fefc4f4ee288172f9685967ebb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"493\",\"quote_id\":\"422\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"494\",\"quote_id\":\"422\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3063, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"421\",\"date\":\"2025-02-13 13:14:00\",\"reference_no\":\"QUOTE0419\",\"customer_id\":\"1245\",\"customer\":\"Lukas Gitari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a8d9e0d636c7a2d6cf94b5f2404bdc6c810ea3ab2d742a3cfb234526024f14b5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"492\",\"quote_id\":\"421\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3064, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"420\",\"date\":\"2025-02-13 13:12:00\",\"reference_no\":\"QUOTE0418\",\"customer_id\":\"1244\",\"customer\":\"George eric\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d0d6b07c2c82bb42a198e098048028901f556b997d7927c6dc6c3811982941a0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"491\",\"quote_id\":\"420\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3065, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"419\",\"date\":\"2025-02-13 11:40:00\",\"reference_no\":\"QUOTE0417\",\"customer_id\":\"1243\",\"customer\":\"Paul Gichangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a19c42330c2bfbd407edb0b51440c45f6b462d501cae494aa2f17207b4de181b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"490\",\"quote_id\":\"419\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3066, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"418\",\"date\":\"2025-02-13 11:37:00\",\"reference_no\":\"QUOTE0416\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"43170816704cf8dce3babad2707d240fa87694d9f61fcb9d1dad8d3c2a982aff\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"489\",\"quote_id\":\"418\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3067, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"417\",\"date\":\"2025-02-13 09:44:00\",\"reference_no\":\"QUOTE0415\",\"customer_id\":\"1242\",\"customer\":\"Brian  Munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3b9e3198957348e7feade5a6d1873cb90a2c5337541bb370c483d64d9489c8c4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"488\",\"quote_id\":\"417\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3068, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"432\",\"date\":\"2025-02-12 13:47:00\",\"reference_no\":\"QUOTE0430\",\"customer_id\":\"1252\",\"customer\":\"benard muraguri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c51708110278c50a257c52c0455ddb8b8accdf80fba6f913b53e9f09b3948d04\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"506\",\"quote_id\":\"432\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3069, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"430\",\"date\":\"2025-02-12 13:41:00\",\"reference_no\":\"QUOTE0428\",\"customer_id\":\"1250\",\"customer\":\"Lydiah  mutugi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"59b1694b22cf7caada5fb90544db507d100ef3905a777c643caf9ce1e2704735\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"504\",\"quote_id\":\"430\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3070, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"429\",\"date\":\"2025-02-12 13:37:00\",\"reference_no\":\"QUOTE0427\",\"customer_id\":\"1249\",\"customer\":\"Aloise mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"797ced8dd189b4cc15b090baabb7424047f3a708c0af331f914c2c5052cbad42\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"503\",\"quote_id\":\"429\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2800.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3071, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"428\",\"date\":\"2025-02-12 13:34:00\",\"reference_no\":\"QUOTE0426\",\"customer_id\":\"1114\",\"customer\":\"Danson wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f0f54e6e22a28dd2098317727458a05501171262f50d11f04faa1c86896d290c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"502\",\"quote_id\":\"428\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3072, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"426\",\"date\":\"2025-02-12 13:29:00\",\"reference_no\":\"QUOTE0424\",\"customer_id\":\"1128\",\"customer\":\"Jane  Catherine\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-13 13:30:57\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0d35e9d90cb460382ef5e5cd773d0279fec386ef126218a40f9509464c81dce2\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"499\",\"quote_id\":\"426\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3073, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"416\",\"date\":\"2025-02-12 12:56:00\",\"reference_no\":\"QUOTE0414\",\"customer_id\":\"1241\",\"customer\":\"Rose\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e2317d39c14a1b5af081285b3224cc1c19bcf2bbd0a7b4530fbe1975469b047f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"487\",\"quote_id\":\"416\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3074, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"415\",\"date\":\"2025-02-12 12:55:00\",\"reference_no\":\"QUOTE0413\",\"customer_id\":\"1240\",\"customer\":\"Jacob Nyaga\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c0e3f58f32be80d76cd89781facb867d876eb300aad33737bd7aaef66dd4466d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"486\",\"quote_id\":\"415\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3075, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"414\",\"date\":\"2025-02-12 12:53:00\",\"reference_no\":\"QUOTE0412\",\"customer_id\":\"1239\",\"customer\":\"consolata wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8416f023bc70d2ad1901f0af8b0db95b45ef33ebf23fa507e309ac41b2a6ce0e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"485\",\"quote_id\":\"414\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3076, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"413\",\"date\":\"2025-02-12 12:49:00\",\"reference_no\":\"QUOTE0411\",\"customer_id\":\"1238\",\"customer\":\"Mirriam Kimotho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"29bb1157ad866c2b5e5df370c2eb02905ea7261983b65043cb2824ac8756b192\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"484\",\"quote_id\":\"413\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3077, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"412\",\"date\":\"2025-02-12 11:06:00\",\"reference_no\":\"QUOTE0410\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9b06f028e2b8963f25d40db8594244166975f4f60b340e2f5b0520f765b01e3d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"483\",\"quote_id\":\"412\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3078, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"411\",\"date\":\"2025-02-12 10:51:00\",\"reference_no\":\"QUOTE0409\",\"customer_id\":\"1237\",\"customer\":\"Elijah (james wachira)\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b4a90cb0e7f24150d83eba02f8bd643991b29befda23d9a7c1ca617fcb31d09f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"482\",\"quote_id\":\"411\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3079, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"410\",\"date\":\"2025-02-12 10:41:00\",\"reference_no\":\"QUOTE0408\",\"customer_id\":\"1236\",\"customer\":\"Hilary Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3bf1cc2574b0bf765667717cef216bc592460523156fbf04eaaf7f773e0aa5c1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"481\",\"quote_id\":\"410\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3080, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"409\",\"date\":\"2025-02-12 10:40:00\",\"reference_no\":\"QUOTE0407\",\"customer_id\":\"1235\",\"customer\":\"Johnson maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"71db4e4adcfebc2ea4b1b90e3a4e6b478b987958b4bb652d40af6d43dbe66ff0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"480\",\"quote_id\":\"409\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3081, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"408\",\"date\":\"2025-02-12 10:25:00\",\"reference_no\":\"QUOTE0406\",\"customer_id\":\"1234\",\"customer\":\"Isaac ndugu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7506471739c5d4a643d26304cc4612ce006b022ace98455fe85842eb0ac120fe\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"479\",\"quote_id\":\"408\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3082, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"407\",\"date\":\"2025-02-12 10:23:00\",\"reference_no\":\"QUOTE0405\",\"customer_id\":\"1233\",\"customer\":\"michael karani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"056df336066675c1813f428b94c99d52fa4193d8080b6bab673463d28f79b768\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"478\",\"quote_id\":\"407\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3083, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"406\",\"date\":\"2025-02-12 10:21:00\",\"reference_no\":\"QUOTE0404\",\"customer_id\":\"1232\",\"customer\":\"David mugo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1b366bf8dd4c87e1f27f763b20c7810139d231ffc3d7325336f77a2d89dbdba8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"477\",\"quote_id\":\"406\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3084, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"405\",\"date\":\"2025-02-12 10:15:00\",\"reference_no\":\"QUOTE0403\",\"customer_id\":\"1073\",\"customer\":\"David Maai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4aaf2a69889c76487cde6e920f128208b0196c2342294075a3188cc20e7cece7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"476\",\"quote_id\":\"405\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3085, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"404\",\"date\":\"2025-02-12 10:06:00\",\"reference_no\":\"QUOTE0402\",\"customer_id\":\"1231\",\"customer\":\"Samuel Njiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3d0404e67945a38aa55f7185f7487b29d993c49292c974c62035fef7a80a9244\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"475\",\"quote_id\":\"404\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3086, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"403\",\"date\":\"2025-02-12 10:04:00\",\"reference_no\":\"QUOTE0401\",\"customer_id\":\"1230\",\"customer\":\"Muthike kinara\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"191000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"191000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"53e8d28faf80a51f938db2326968894f11b94ba74db173685d799313837c9708\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"473\",\"quote_id\":\"403\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"93.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"176700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"93.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"474\",\"quote_id\":\"403\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14300.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3087, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"402\",\"date\":\"2025-02-12 10:03:00\",\"reference_no\":\"QUOTE0400\",\"customer_id\":\"1229\",\"customer\":\"Andrew kiragu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"37f2ed4d5851a4352d20a57e51c048ade1b1ec543d475f07f46421b373457218\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"472\",\"quote_id\":\"402\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3088, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"401\",\"date\":\"2025-02-12 10:00:00\",\"reference_no\":\"QUOTE0399\",\"customer_id\":\"1228\",\"customer\":\"john murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9d116f99223de4109ea18225a7700a40d864c66c019dc6c8855f48fad998ab08\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"471\",\"quote_id\":\"401\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3089, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"400\",\"date\":\"2025-02-12 09:58:00\",\"reference_no\":\"QUOTE0398\",\"customer_id\":\"1227\",\"customer\":\"Josphat ndai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4637b55d9d7244e3300e4ffe0050c4ce2a2d4defecda59be55b7f3cf3d976b20\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"470\",\"quote_id\":\"400\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3090, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"423\",\"date\":\"2025-02-11 13:17:00\",\"reference_no\":\"QUOTE0421\",\"customer_id\":\"930\",\"customer\":\"Jeremiah Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a6ca93a89a318de41f587ea7ffa925479be327703b862ff2e75a95dba6c046e1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"495\",\"quote_id\":\"423\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3091, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"389\",\"date\":\"2025-02-08 13:22:00\",\"reference_no\":\"QUOTE0387\",\"customer_id\":\"227\",\"customer\":\"Benson warui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"42ed8927ce4c06adf7ecb5aad36df5ac1db88261c8998e71ce17ffe398a98dc1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"459\",\"quote_id\":\"389\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3092, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"388\",\"date\":\"2025-02-08 13:17:00\",\"reference_no\":\"QUOTE0386\",\"customer_id\":\"1221\",\"customer\":\"Margret Kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7c5e6dbf87c5f79f869a93e03c7491f7691b90b56c9d6371bb1ce9dbf5307493\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"458\",\"quote_id\":\"388\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3093, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"387\",\"date\":\"2025-02-07 13:13:00\",\"reference_no\":\"QUOTE0385\",\"customer_id\":\"1220\",\"customer\":\"Kimathi Kimonte\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e61b02c6920bd7a13aac9da4381d5cdd36187a047ff741d9133ad93a07b1d0ce\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"457\",\"quote_id\":\"387\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3094, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"386\",\"date\":\"2025-02-07 13:12:00\",\"reference_no\":\"QUOTE0384\",\"customer_id\":\"497\",\"customer\":\"George Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9791fbc2d695a730a8dd2563f6f06e275a8d87a5c89c16c9aa02dbf7c9a02e2c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"456\",\"quote_id\":\"386\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3095, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"385\",\"date\":\"2025-02-07 13:09:00\",\"reference_no\":\"QUOTE0383\",\"customer_id\":\"192\",\"customer\":\"Joseph Muchoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2305928d95da41be22d551e74e620e5971513bcb29d57834838ee2923b71cbfd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"455\",\"quote_id\":\"385\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3096, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"384\",\"date\":\"2025-02-07 13:07:00\",\"reference_no\":\"QUOTE0382\",\"customer_id\":\"165\",\"customer\":\"peter kiara\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"259406a42a4d5098b49d348b30c917a1f1f0d068398907bf20bfd18e451ca5af\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"454\",\"quote_id\":\"384\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3097, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"383\",\"date\":\"2025-02-07 13:03:00\",\"reference_no\":\"QUOTE0381\",\"customer_id\":\"1219\",\"customer\":\"James Mugo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4b1d5a1c89f92c3ea31ac084b304a77b035b79beadf449bed47b5c1211e863d8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"453\",\"quote_id\":\"383\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3098, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"382\",\"date\":\"2025-02-07 12:59:00\",\"reference_no\":\"QUOTE0380\",\"customer_id\":\"1218\",\"customer\":\"Richard Mnuhe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"10400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"be3fd5dbad1bc5d824b1c78a6c64153a55d9ed49b1e2468b54fe65af0d1d7e18\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"451\",\"quote_id\":\"382\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3099, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"381\",\"date\":\"2025-02-07 12:57:00\",\"reference_no\":\"QUOTE0379\",\"customer_id\":\"1217\",\"customer\":\"Alfred gathumbi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6c0b4e85dc3bf555bb251a92cc7a6e8a4264f90bce869a95f2e370ff0f38dc40\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"450\",\"quote_id\":\"381\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4800.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3100, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"380\",\"date\":\"2025-02-07 12:54:00\",\"reference_no\":\"QUOTE0378\",\"customer_id\":\"1216\",\"customer\":\"johnson kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"41800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"41800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-08 13:02:44\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"841df06a652e1280d8eb6d11d75807568b9e8e283bfb19c8720aa6ec73081754\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"452\",\"quote_id\":\"380\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"41800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3101, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"379\",\"date\":\"2025-02-07 10:24:00\",\"reference_no\":\"QUOTE0377\",\"customer_id\":\"1215\",\"customer\":\"Anthony mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"369eff34530afdaa1503b430706502430e794ed76666ddd5a66c52943ea1c4d9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"448\",\"quote_id\":\"379\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3102, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"378\",\"date\":\"2025-02-07 10:22:00\",\"reference_no\":\"QUOTE0376\",\"customer_id\":\"1214\",\"customer\":\"Beth wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c16849b86f1ce67c3a83f9c7fbbf6be25572835cfa2ed4cd7f5d043e46de8be3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"447\",\"quote_id\":\"378\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3103, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"377\",\"date\":\"2025-02-07 10:21:00\",\"reference_no\":\"QUOTE0375\",\"customer_id\":\"1213\",\"customer\":\"Geoffrey wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"012b6c34b58b432558d0f7b2be8eb4c597ec8ee29ab4bca9ea1b55f6a32405f8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"446\",\"quote_id\":\"377\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3104, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"376\",\"date\":\"2025-02-07 10:19:00\",\"reference_no\":\"QUOTE0374\",\"customer_id\":\"1212\",\"customer\":\"William murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c655fdd8266de15435e0ab176bd87d84b906276350df0a2311a2144d7bc674d8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"444\",\"quote_id\":\"376\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"445\",\"quote_id\":\"376\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3105, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"375\",\"date\":\"2025-02-07 10:17:00\",\"reference_no\":\"QUOTE0373\",\"customer_id\":\"1211\",\"customer\":\"rose kiongo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0a9772f24630508fa92fd0a850b5d0a881d593d01ba977766b5b9f1bf8070a39\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"443\",\"quote_id\":\"375\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3106, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"374\",\"date\":\"2025-02-07 10:15:00\",\"reference_no\":\"QUOTE0372\",\"customer_id\":\"1210\",\"customer\":\"charles wamugunda\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dda245c16fd6fadf16ac853137397ab3ea3cf18c2f69d1e70ea49f3bb1b8482a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"442\",\"quote_id\":\"374\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3107, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"373\",\"date\":\"2025-02-07 10:12:00\",\"reference_no\":\"QUOTE0371\",\"customer_id\":\"1209\",\"customer\":\"Rahab wairimu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"73f2097a00f8a6d0022e2e237a5e7212ffc3068d5f5ac049a2c95c487bcc6fb4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"441\",\"quote_id\":\"373\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3108, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"372\",\"date\":\"2025-02-07 10:10:00\",\"reference_no\":\"QUOTE0370\",\"customer_id\":\"1208\",\"customer\":\"Joseph muriga\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"541e7d6c69e93b783ce9ae7f49a0b2b01e0d3e2bfbf55c11a2b444e0faa4afed\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"440\",\"quote_id\":\"372\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3109, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"371\",\"date\":\"2025-02-07 10:07:00\",\"reference_no\":\"QUOTE0369\",\"customer_id\":\"822\",\"customer\":\"John\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6fd2c3bf06677f7506c3278e31c393941a01628baaf697e8902660749735f5e4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"439\",\"quote_id\":\"371\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3110, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"370\",\"date\":\"2025-02-07 10:01:00\",\"reference_no\":\"QUOTE0368\",\"customer_id\":\"1207\",\"customer\":\"Susan wanjiku\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f192c58158c42462a678ac18938c4302c41a1ded1ebd33fe077e7836d6440db1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"438\",\"quote_id\":\"370\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3111, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"369\",\"date\":\"2025-02-06 14:24:00\",\"reference_no\":\"QUOTE0367\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2d8f865ad850e4701ab8fe37478b60fbfcb5bfafbea6a483be03c314427eab8e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"437\",\"quote_id\":\"369\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3112, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"368\",\"date\":\"2025-02-06 14:21:00\",\"reference_no\":\"QUOTE0366\",\"customer_id\":\"1205\",\"customer\":\"Peter muchiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"18c55d5f25f2ba7d0c6fdff6a35bf15905b9364d631dad21167188131ca65902\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"436\",\"quote_id\":\"368\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3113, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"367\",\"date\":\"2025-02-06 14:19:00\",\"reference_no\":\"QUOTE0365\",\"customer_id\":\"1204\",\"customer\":\"Ephraim Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"df1d82d6515e3681c9ba46b3eb7457d1005e75f582c3f21ff886e78c8e261e67\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"434\",\"quote_id\":\"367\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"435\",\"quote_id\":\"367\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3114, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"366\",\"date\":\"2025-02-06 14:16:00\",\"reference_no\":\"QUOTE0364\",\"customer_id\":\"1203\",\"customer\":\"Reubenson murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"409006b77c378329febbdefeeb5c3afe10cb5bd34b69bd6b6f66c8c4a7c0bd01\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"433\",\"quote_id\":\"366\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3115, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"390\",\"date\":\"2025-02-06 10:32:00\",\"reference_no\":\"QUOTE0388\",\"customer_id\":\"1180\",\"customer\":\"John Mungai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"daa5c85a9ffea299920c9d9d53e35f9193a87645b42bd480dc307cff2e0b130d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"460\",\"quote_id\":\"390\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3116, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"365\",\"date\":\"2025-02-06 08:43:00\",\"reference_no\":\"QUOTE0363\",\"customer_id\":\"1202\",\"customer\":\"kennedy njogu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e59cf9f35c55100ca3413a5eb4bab2ec535e6919e69e381875bd9769a69aacc4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"432\",\"quote_id\":\"365\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3117, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"364\",\"date\":\"2025-02-06 08:41:00\",\"reference_no\":\"QUOTE0362\",\"customer_id\":\"1201\",\"customer\":\"njeru francis\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9669847ddeb7d7c77f53acb053050409c19d4985bdba795cdfd6fb2b5bb43357\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"431\",\"quote_id\":\"364\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3118, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"363\",\"date\":\"2025-02-06 08:39:00\",\"reference_no\":\"QUOTE0361\",\"customer_id\":\"1200\",\"customer\":\"Alice wairiuko\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6fa0ddd0299ae137c0837c0ada2a845cd6690d33918e2f1348a0a1103ebe4a63\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"430\",\"quote_id\":\"363\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3119, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"362\",\"date\":\"2025-02-06 08:36:00\",\"reference_no\":\"QUOTE0360\",\"customer_id\":\"1199\",\"customer\":\"Janet Beth\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"585abcc13ac3bb69aff1ea4c60497b3d6bde5d6b4e375e684bc4a24f824bb203\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"429\",\"quote_id\":\"362\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3120, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"361\",\"date\":\"2025-02-06 08:34:00\",\"reference_no\":\"QUOTE0359\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"49800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3020d7ffeaf8c3101189a0e770436a47763bb47503d249e8d0b920228326e442\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"426\",\"quote_id\":\"361\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"427\",\"quote_id\":\"361\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"428\",\"quote_id\":\"361\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3121, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"360\",\"date\":\"2025-02-06 08:33:00\",\"reference_no\":\"QUOTE0358\",\"customer_id\":\"1198\",\"customer\":\"John Warui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"640a6a9e8df6493fd3618f52b04a2cf6074ea3e438c64cfa958dab1e5daf2c74\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"425\",\"quote_id\":\"360\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3122, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"359\",\"date\":\"2025-02-06 08:27:00\",\"reference_no\":\"QUOTE0357\",\"customer_id\":\"1197\",\"customer\":\"Jeremian Mubena\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"82ea6d997df301611686711a45f8da566e81aa4a151a90385eef309ed2b29e1f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"424\",\"quote_id\":\"359\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3123, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"358\",\"date\":\"2025-02-04 17:11:00\",\"reference_no\":\"QUOTE0356\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c3a76ba2e7131271686b8d8171f44e06cc78a4577d6546088bbb068462c5a6cf\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"423\",\"quote_id\":\"358\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3124, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"357\",\"date\":\"2025-02-04 17:10:00\",\"reference_no\":\"QUOTE0355\",\"customer_id\":\"1196\",\"customer\":\"Florence\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ba56dc84762517e4d4148e97eaccc28ae0c12042c7ce632ba824cebcd4aed40f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"422\",\"quote_id\":\"357\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3125, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"356\",\"date\":\"2025-02-04 16:22:00\",\"reference_no\":\"QUOTE0354\",\"customer_id\":\"1195\",\"customer\":\"Hemry Kaguuru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 16:22:32\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ee30cb2e83f0d990d221a574f818774d305bae1a5469a9e54f79370e602431ed\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"421\",\"quote_id\":\"356\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3126, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"355\",\"date\":\"2025-02-04 16:18:00\",\"reference_no\":\"QUOTE0353\",\"customer_id\":\"1194\",\"customer\":\"John ngari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6e3267e3051531a0f3fd1ec35cae7e60a3fe2b187d554d7e895cccc16a38db72\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"419\",\"quote_id\":\"355\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3127, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"354\",\"date\":\"2025-02-04 16:16:00\",\"reference_no\":\"QUOTE0352\",\"customer_id\":\"1193\",\"customer\":\"Moses jeff\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"67eff31656ffd8f23aa1760cec7b2f4f70e4b647b715c682a641a3df1e42e072\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"418\",\"quote_id\":\"354\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3128, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"353\",\"date\":\"2025-02-04 16:07:00\",\"reference_no\":\"QUOTE0351\",\"customer_id\":\"1192\",\"customer\":\"martin kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 16:07:45\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"12b0b3ee24f9351d7500571b5a8250755382093483ab8146e0fc2b892c08994a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"417\",\"quote_id\":\"353\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3129, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"352\",\"date\":\"2025-02-04 16:06:00\",\"reference_no\":\"QUOTE0350\",\"customer_id\":\"1191\",\"customer\":\"James githiji\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"338a281d062033ea9a8f5d83c84da235a301b0d72045bd5e2d96ef8602b97842\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"415\",\"quote_id\":\"352\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3130, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"351\",\"date\":\"2025-02-04 16:04:00\",\"reference_no\":\"QUOTE0349\",\"customer_id\":\"1190\",\"customer\":\"kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cdccb1e627c4965a5b5ee14a9fc8b5c61a4688b70484eb00ea40b6cb1e39e299\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"413\",\"quote_id\":\"351\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"414\",\"quote_id\":\"351\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3131, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"350\",\"date\":\"2025-02-04 16:02:00\",\"reference_no\":\"QUOTE0348\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8834eb4fdd2719e7f8a03c18502d9fcf369b1ac50f981cb49a7309ecdb4d9a59\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"411\",\"quote_id\":\"350\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"412\",\"quote_id\":\"350\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3132, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"349\",\"date\":\"2025-02-04 16:02:00\",\"reference_no\":\"QUOTE0347\",\"customer_id\":\"1189\",\"customer\":\"joseph murathii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6185358d3ca3c33bb4a2e65dee926f0b9cef047bc8af0de84c4253d6a640dae8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"410\",\"quote_id\":\"349\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3133, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"348\",\"date\":\"2025-02-04 16:00:00\",\"reference_no\":\"QUOTE0346\",\"customer_id\":\"1188\",\"customer\":\"joseph mwangi riakanau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"47c5381ec7f10872dcc25b22fbd3904aa349be23945233a345e85444dc257653\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"409\",\"quote_id\":\"348\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3134, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"347\",\"date\":\"2025-02-04 15:57:00\",\"reference_no\":\"QUOTE0345\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"52262668e7af8bfd2bf9a410cd15655eeea4b26a26e3d2702691eb5ef83f5dc7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"408\",\"quote_id\":\"347\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3135, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"346\",\"date\":\"2025-02-04 15:56:00\",\"reference_no\":\"QUOTE0344\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"150000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0e6cc5430474221da2a3f2048663c722af1b44a1b0b5959000d5700561bcbd72\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"407\",\"quote_id\":\"346\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"150.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"150.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3136, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"345\",\"date\":\"2025-02-04 15:55:00\",\"reference_no\":\"QUOTE0343\",\"customer_id\":\"1187\",\"customer\":\"james munenr\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1e4415120b6e590796a2e4081e82064879996c20471df7202b489c0c023caee7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"404\",\"quote_id\":\"345\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"405\",\"quote_id\":\"345\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"406\",\"quote_id\":\"345\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3137, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"342\",\"date\":\"2025-02-04 09:02:00\",\"reference_no\":\"QUOTE0340\",\"customer_id\":\"1185\",\"customer\":\"SIMON MUTHIKE\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d3f293a82314e7fe86db9c44e27f2c29b0494b33ba7c5b056d9f7bc6df705f59\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"400\",\"quote_id\":\"342\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3138, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"341\",\"date\":\"2025-02-04 08:44:00\",\"reference_no\":\"QUOTE0339\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8357dcb2e5678b71c3b98f61b299baef4aab9223a2843c16dc4a4def4e8c8d28\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"399\",\"quote_id\":\"341\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3139, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"340\",\"date\":\"2025-02-04 08:42:00\",\"reference_no\":\"QUOTE0338\",\"customer_id\":\"1184\",\"customer\":\"john maria\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5e75293207f4a97dc46452349109f8178e69ca4a1abe07b0585e476860459c5c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"398\",\"quote_id\":\"340\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3140, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"339\",\"date\":\"2025-02-04 08:40:00\",\"reference_no\":\"QUOTE0337\",\"customer_id\":\"1183\",\"customer\":\"Benjamin  Njeru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"79703894cbb5251e1c77a475bf25a5ec850bba5ca7f623d02b5dbdede1c8bd04\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"397\",\"quote_id\":\"339\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3141, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"338\",\"date\":\"2025-02-04 08:39:00\",\"reference_no\":\"QUOTE0336\",\"customer_id\":\"1182\",\"customer\":\"Gilbert muthee\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3e76400823617ed919c162d4c86a8e69ec129520f7d7d3b84005177a4bf8e74c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"396\",\"quote_id\":\"338\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3142, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"337\",\"date\":\"2025-02-04 08:37:00\",\"reference_no\":\"QUOTE0335\",\"customer_id\":\"1181\",\"customer\":\"Gabriel maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ff20c5d88986d6ab87dd81ac089ff79ae24c67520dfc160bc1d98b9565548559\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"395\",\"quote_id\":\"337\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3143, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"336\",\"date\":\"2025-02-04 08:36:00\",\"reference_no\":\"QUOTE0334\",\"customer_id\":\"1180\",\"customer\":\"John Mungai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a96f24bf7f134d373578a287f8492fe167a9df720aa3172566b3cc3b0e1ee46a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"394\",\"quote_id\":\"336\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3144, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"335\",\"date\":\"2025-02-04 08:32:00\",\"reference_no\":\"QUOTE0333\",\"customer_id\":\"1179\",\"customer\":\"Nicholas mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"56f78e3c9a2bd5c6e703fea5e7cd0ab4adb2307e0c23808388897386d8eec7c4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"393\",\"quote_id\":\"335\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3145, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"334\",\"date\":\"2025-02-03 17:06:00\",\"reference_no\":\"QUOTE0332\",\"customer_id\":\"1178\",\"customer\":\"James muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6b4afb280900dbcd36d1fa1208eb35d498e96a123914e80486d31e0ea15ad45b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"392\",\"quote_id\":\"334\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3146, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"333\",\"date\":\"2025-02-03 15:43:00\",\"reference_no\":\"QUOTE0331\",\"customer_id\":\"1005\",\"customer\":\"john mucebio\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"66cb45886c602c98f69914ad0b3d0324c5994242e2d03c98cd07c5abcc3c0e26\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"391\",\"quote_id\":\"333\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3147, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"332\",\"date\":\"2025-02-03 15:42:00\",\"reference_no\":\"QUOTE0330\",\"customer_id\":\"1177\",\"customer\":\"Edward Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"49400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4353521a91e113c5e747c78ee44e23cb3b55caca6677bcaccf4b4215f5493eff\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"390\",\"quote_id\":\"332\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"49400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3148, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"331\",\"date\":\"2025-02-03 15:36:00\",\"reference_no\":\"QUOTE0329\",\"customer_id\":\"1176\",\"customer\":\"Nazarius Gichira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"133000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"133000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3e205dea2b2c426497f7c91d274c69ad77ac263cd964661d3cf83b54127776cc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"389\",\"quote_id\":\"331\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"133000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3149, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"330\",\"date\":\"2025-02-03 14:54:00\",\"reference_no\":\"QUOTE0328\",\"customer_id\":\"1175\",\"customer\":\"zachary kithaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"95000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"95000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3e824b82e0fe118b01c29371c1fa87d22d730f6ea51a66fded0d570ec0292039\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"388\",\"quote_id\":\"330\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"95000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"50.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3150, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"329\",\"date\":\"2025-02-03 14:46:00\",\"reference_no\":\"QUOTE0327\",\"customer_id\":\"1174\",\"customer\":\"Gideon kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"db0591fb2c3f59f0a03849d7b31a7350d5e5d2e568bec6b308931169d110087b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"387\",\"quote_id\":\"329\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3151, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"328\",\"date\":\"2025-02-03 14:44:00\",\"reference_no\":\"QUOTE0326\",\"customer_id\":\"809\",\"customer\":\"Michael\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"47500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"47500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3f2bdeacf797163f83d76a0cedfe37a26a332a5e33540e3b9ad98827c5e942f1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"386\",\"quote_id\":\"328\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"47500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3152, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"327\",\"date\":\"2025-02-03 14:40:00\",\"reference_no\":\"QUOTE0325\",\"customer_id\":\"972\",\"customer\":\"joseph murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"42800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"42800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a339dc35d1027bab5ea99c3b9a154379548ecf3b65c63bec00c64dc929cc4abe\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"384\",\"quote_id\":\"327\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"385\",\"quote_id\":\"327\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3153, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"326\",\"date\":\"2025-02-03 14:40:00\",\"reference_no\":\"QUOTE0324\",\"customer_id\":\"1173\",\"customer\":\"Joseph Irungu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"430325ebc80598ca87811eb5235f2026129c11396cfc649fca32e8049577d7a1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"383\",\"quote_id\":\"326\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3154, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"325\",\"date\":\"2025-02-03 14:38:00\",\"reference_no\":\"QUOTE0323\",\"customer_id\":\"1172\",\"customer\":\"francis maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e7e1ac6a8d9ec4a456b31314901576d29373cbd787099a1bc823ad9c9a04b952\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"382\",\"quote_id\":\"325\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3155, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"324\",\"date\":\"2025-02-03 14:36:00\",\"reference_no\":\"QUOTE0322\",\"customer_id\":\"1171\",\"customer\":\"moses\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f506d1077ebb3954da437b244531a53d7a1c38b520b8c44297347cc741441fb7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"381\",\"quote_id\":\"324\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3156, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"323\",\"date\":\"2025-02-03 14:35:00\",\"reference_no\":\"QUOTE0321\",\"customer_id\":\"1170\",\"customer\":\"anthony muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"39900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"39900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ee482a4ea685cf28215b2f8415d78d6b89a26e15fb0d5eb7677aa898705fdee5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"380\",\"quote_id\":\"323\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"21.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"39900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"21.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3157, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"322\",\"date\":\"2025-02-03 14:34:00\",\"reference_no\":\"QUOTE0320\",\"customer_id\":\"1169\",\"customer\":\"Pauline maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f2083b03f30b8036d62d61bcafe834287b3dabc92df6edf6471adeb5d4f3d590\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"379\",\"quote_id\":\"322\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3158, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"321\",\"date\":\"2025-02-03 14:31:00\",\"reference_no\":\"QUOTE0319\",\"customer_id\":\"1168\",\"customer\":\"Macharia safania\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ee89e420cce8ac4673b574d7664eef705b795510a54dc893003124a202367306\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"378\",\"quote_id\":\"321\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"72.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"72.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3159, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"320\",\"date\":\"2025-02-03 14:30:00\",\"reference_no\":\"QUOTE0318\",\"customer_id\":\"1167\",\"customer\":\"samuel mutugi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9520d8a7c7c8ce562053b68208dab59cd6f1e98047aea265c9ef7ebc6a5ae5a5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"377\",\"quote_id\":\"320\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3160, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"319\",\"date\":\"2025-02-03 14:28:00\",\"reference_no\":\"QUOTE0317\",\"customer_id\":\"1166\",\"customer\":\"maringa samuel\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0744f7ecd0545f0b8b8466aff8ce97c390fd0cc7cd9e0a8198b9bc59a35f5f6e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"376\",\"quote_id\":\"319\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3161, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"318\",\"date\":\"2025-02-03 14:27:00\",\"reference_no\":\"QUOTE0316\",\"customer_id\":\"1165\",\"customer\":\"arthur munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1eab81c6b70285aa31d563807955b249f19a814c103f65b5d61758bef701776f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"374\",\"quote_id\":\"318\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"375\",\"quote_id\":\"318\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3162, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"317\",\"date\":\"2025-02-01 16:03:00\",\"reference_no\":\"QUOTE0315\",\"customer_id\":\"985\",\"customer\":\"mrs kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e17e337a01b461a3441a6475fcd53969f435616838d56fccdc3516383ceeb0ec\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"373\",\"quote_id\":\"317\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3163, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"316\",\"date\":\"2025-02-01 16:01:00\",\"reference_no\":\"QUOTE0314\",\"customer_id\":\"985\",\"customer\":\"mrs kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"96fe424a0c91b8f9d292dccaddf5891a7ec00ab3d4dad86504a901f8afc18aa0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"372\",\"quote_id\":\"316\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3164, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"315\",\"date\":\"2025-02-01 15:57:00\",\"reference_no\":\"QUOTE0313\",\"customer_id\":\"1164\",\"customer\":\"mr munene(paul thika)\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"288000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"288000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"aa3c320ac6d99b07815d60168a3dd940b414471c0f52b5893af17b0956448de8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"370\",\"quote_id\":\"315\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"128000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"371\",\"quote_id\":\"315\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"160000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3165, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"314\",\"date\":\"2025-02-01 15:50:00\",\"reference_no\":\"QUOTE0312\",\"customer_id\":\"1162\",\"customer\":\"mr munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"288000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"288000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a06755ec58dd6f461b0043483970620eb3fce13b6cb241905aa8f3a4877821e4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"368\",\"quote_id\":\"314\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"128000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"369\",\"quote_id\":\"314\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"160.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"160000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"160.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3166, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"313\",\"date\":\"2025-02-01 11:21:00\",\"reference_no\":\"QUOTE0311\",\"customer_id\":\"196\",\"customer\":\"wilson boma\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"76000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"13bb79dfaafce8a6c7aac955cddcec8f1a8b5c25438cc7f516573667e0338b1a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"367\",\"quote_id\":\"313\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3167, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"312\",\"date\":\"2025-02-01 10:38:00\",\"reference_no\":\"QUOTE0310\",\"customer_id\":\"1161\",\"customer\":\"Paulo kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"36100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"36100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ec2974bb73a4a99367f10f5abccaf7d4dfe46a2ecc86115430c8bac9ded11e2c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"366\",\"quote_id\":\"312\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3168, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"311\",\"date\":\"2025-02-01 10:21:00\",\"reference_no\":\"QUOTE0309\",\"customer_id\":\"1160\",\"customer\":\"simon murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"171000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"171000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"45d7ce37f9cb41ac316de780d15b441a08c129c786c59572919a307d58c26e5a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"365\",\"quote_id\":\"311\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"171000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"90.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3169, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"310\",\"date\":\"2025-02-01 10:07:00\",\"reference_no\":\"QUOTE0308\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"19c7ceabe26b495aec767ce39853ce81beb77c8a64c66cafae48d47a875d4190\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"364\",\"quote_id\":\"310\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3170, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"309\",\"date\":\"2025-02-01 09:42:00\",\"reference_no\":\"QUOTE0307\",\"customer_id\":\"1159\",\"customer\":\"Anthhony murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12675.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12675.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0b6d6243b7a6e17441ce8440acb78e62aa1d5fd51dabd577f53bd1a8f8d3bd38\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"363\",\"quote_id\":\"309\",\"product_id\":\"1122\",\"product_code\":\"75722675\",\"product_name\":\"Rionex propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"19.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12675.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"19.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3171, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"308\",\"date\":\"2025-02-01 09:38:00\",\"reference_no\":\"QUOTE0306\",\"customer_id\":\"1158\",\"customer\":\"Gitonga\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"281d8452324447fd1f92b6acb152df6126f8a7722e9b950d2cf5471a3c428e8c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"362\",\"quote_id\":\"308\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3172, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"307\",\"date\":\"2025-02-01 09:20:00\",\"reference_no\":\"QUOTE0305\",\"customer_id\":\"1157\",\"customer\":\"mary njeri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"195.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"195.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a7096f8b5d807b793679cc5c115695f19056f3b768af0c13191a52fb29dbaf6b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"361\",\"quote_id\":\"307\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.1500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"195.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.1500\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3173, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"306\",\"date\":\"2025-02-01 09:15:00\",\"reference_no\":\"QUOTE0304\",\"customer_id\":\"1156\",\"customer\":\"William Gichoya\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"57d23e4e2f6f286266e81597c4f0e848b8e36ff0c94d8f3944ec235bc01d82dc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"360\",\"quote_id\":\"306\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3174, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"305\",\"date\":\"2025-02-01 09:13:00\",\"reference_no\":\"QUOTE0303\",\"customer_id\":\"1155\",\"customer\":\"Duncan Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"af4dc5f0ef7aff00805251afcec402d629994e717ef821f0ccaec847db92f47a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"359\",\"quote_id\":\"305\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3175, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"304\",\"date\":\"2025-02-01 09:02:00\",\"reference_no\":\"QUOTE0302\",\"customer_id\":\"1154\",\"customer\":\"Isaac Thagana\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4eacaee927a01bf3da391dc38cc4e86fa36202cfccc07e526d10c3c9f5edd58b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"358\",\"quote_id\":\"304\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3176, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"303\",\"date\":\"2025-02-01 09:00:00\",\"reference_no\":\"QUOTE0301\",\"customer_id\":\"1153\",\"customer\":\"Wycliff\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f41fc4ff5d509d760ab6665916335cde9da56aa693dd6a94b777d1217e876e8a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"357\",\"quote_id\":\"303\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3177, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"302\",\"date\":\"2025-02-01 08:58:00\",\"reference_no\":\"QUOTE0300\",\"customer_id\":\"1152\",\"customer\":\"Anderson Gachoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b3a90e296c6eb3cab27aa846c27b6c534e5293d697bb321b7a20fa465aa7a11d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"356\",\"quote_id\":\"302\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3178, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"301\",\"date\":\"2025-02-01 08:57:00\",\"reference_no\":\"QUOTE0299\",\"customer_id\":\"1151\",\"customer\":\"Anthony Gichira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"50c998060b53ae9d069e6feda8edbb308f573827210b53641e686cbfb28bdeeb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"355\",\"quote_id\":\"301\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3179, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"300\",\"date\":\"2025-02-01 08:55:00\",\"reference_no\":\"QUOTE0298\",\"customer_id\":\"1150\",\"customer\":\"Paul Muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"912db98950092ccec57c36e108dc6bd13227ebcaddc8baefcfe4c38ad7211ab3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"354\",\"quote_id\":\"300\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3180, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"299\",\"date\":\"2025-02-01 08:45:00\",\"reference_no\":\"QUOTE0297\",\"customer_id\":\"1149\",\"customer\":\"Fredrick Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c49184de00f2ffc3604f4e108eef40cd276263f675cfe219f0ae81e005258869\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"353\",\"quote_id\":\"299\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3181, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"298\",\"date\":\"2025-02-01 08:43:00\",\"reference_no\":\"QUOTE0296\",\"customer_id\":\"1148\",\"customer\":\"David Ndathi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8f2246dcd45a5f0432377b046849440dbe6096c252ace7a727838016ba473fb4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"352\",\"quote_id\":\"298\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3182, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"297\",\"date\":\"2025-02-01 08:42:00\",\"reference_no\":\"QUOTE0295\",\"customer_id\":\"1147\",\"customer\":\"John Mutugi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"329795b36d14b163c7c4576f34256e2ac42ee746a03d6450c154f91d6e975d90\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"351\",\"quote_id\":\"297\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3183, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"296\",\"date\":\"2025-02-01 08:37:00\",\"reference_no\":\"QUOTE0294\",\"customer_id\":\"1017\",\"customer\":\"christopher muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"69a99c7b013e65a99428bcd1b4faf2d8e26934cae00619afa19825e93af11e17\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"350\",\"quote_id\":\"296\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3184, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"295\",\"date\":\"2025-02-01 08:36:00\",\"reference_no\":\"QUOTE0293\",\"customer_id\":\"1146\",\"customer\":\"ann nyanguthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a78fa878f9f64fc29de22f1e62fc0396d08ed29283111d1d24600228e28afb55\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"349\",\"quote_id\":\"295\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3185, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"294\",\"date\":\"2025-02-01 08:35:00\",\"reference_no\":\"QUOTE0292\",\"customer_id\":\"1145\",\"customer\":\"Simon Murigu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"34ea6c8a849468ffe3e26a2a3c7b32599f4fe455d8577a9644dbb49cf0837cc1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"348\",\"quote_id\":\"294\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3186, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"293\",\"date\":\"2025-02-01 08:33:00\",\"reference_no\":\"QUOTE0291\",\"customer_id\":\"1144\",\"customer\":\"Pauline Muthoni\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"241ecfcb83687773a233be8ef603890305d2542b1d62ec1e8f0c7c599d824197\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"347\",\"quote_id\":\"293\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3187, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"292\",\"date\":\"2025-02-01 08:30:00\",\"reference_no\":\"QUOTE0290\",\"customer_id\":\"1143\",\"customer\":\"Julius Kimotho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ed32d5200042ccd8592a7b4a4e2ce0092d8e4daef53d710c416b8a058cab7e7c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"346\",\"quote_id\":\"292\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3188, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"291\",\"date\":\"2025-02-01 08:29:00\",\"reference_no\":\"QUOTE0289\",\"customer_id\":\"992\",\"customer\":\"michael gitwe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6b9c28cb745d9108e4d85fa7a0b4fb59aac9c6ebe6920fe3533deba72c4cf756\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"345\",\"quote_id\":\"291\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3189, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"290\",\"date\":\"2025-02-01 08:28:00\",\"reference_no\":\"QUOTE0288\",\"customer_id\":\"1142\",\"customer\":\"Alfred Chomba\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bc66058a4d163e5eff14a4bee87a3f10563a4faaac23b342a45a877fc027e592\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"344\",\"quote_id\":\"290\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3190, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"289\",\"date\":\"2025-02-01 08:26:00\",\"reference_no\":\"QUOTE0287\",\"customer_id\":\"1141\",\"customer\":\"John Muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"44b4538720dc2444b072806003166618dde0fbc2311d2c94076c076f773325d7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"343\",\"quote_id\":\"289\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3191, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"288\",\"date\":\"2025-02-01 08:24:00\",\"reference_no\":\"QUOTE0286\",\"customer_id\":\"1140\",\"customer\":\"Mohammehd\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0c803122adc1acc58afa221ac237e6f0b08537b7ae6a84769be0fd6103063501\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"342\",\"quote_id\":\"288\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3192, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"287\",\"date\":\"2025-02-01 08:23:00\",\"reference_no\":\"QUOTE0285\",\"customer_id\":\"1139\",\"customer\":\"Grace nyambura\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"258e10d70e13b9a7853b4b31c61ce3595417f2a69fdbdc919e347e215619c34c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"341\",\"quote_id\":\"287\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3193, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"286\",\"date\":\"2025-02-01 08:21:00\",\"reference_no\":\"QUOTE0284\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1d987333da1e36e32493b25c3bba2ddbd5d43abe84e8d09cac5d2135eddee28d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"340\",\"quote_id\":\"286\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3194, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"285\",\"date\":\"2025-02-01 08:19:00\",\"reference_no\":\"QUOTE0283\",\"customer_id\":\"1138\",\"customer\":\"Regina Wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f1b2b3f5f34616a46533a4fb5b72f02aa209e3b5495603ccecf072f7e24fe0d6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"339\",\"quote_id\":\"285\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3195, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"284\",\"date\":\"2025-01-29 17:02:00\",\"reference_no\":\"QUOTE0282\",\"customer_id\":\"1137\",\"customer\":\"samuel mararo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"42c4be723ebb12d6df58ebcf5e59436245d8e51b771bfd809e2c30cd1a237099\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"338\",\"quote_id\":\"284\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3196, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"283\",\"date\":\"2025-01-29 16:36:00\",\"reference_no\":\"QUOTE0281\",\"customer_id\":\"1136\",\"customer\":\"Lucy  Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c6c914b842c9902012733d0560d7c374e839bfad9d6b0a47c90a390f8bbde64a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"337\",\"quote_id\":\"283\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3197, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"282\",\"date\":\"2025-01-29 16:33:00\",\"reference_no\":\"QUOTE0280\",\"customer_id\":\"1135\",\"customer\":\"Mbogo Muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22750.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22750.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4899cb46f54ce2282a3102a2f58b486c1049a9fa31108ac6320d4d514bd35520\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"336\",\"quote_id\":\"282\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"17.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22750.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3198, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"281\",\"date\":\"2025-01-29 16:32:00\",\"reference_no\":\"QUOTE0279\",\"customer_id\":\"1018\",\"customer\":\"sarah muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"65e951507dee5ff2fbae8f8f33279201c7febd84cf99d1550e482dc669e7c416\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"335\",\"quote_id\":\"281\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3199, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"280\",\"date\":\"2025-01-29 16:30:00\",\"reference_no\":\"QUOTE0278\",\"customer_id\":\"1134\",\"customer\":\"felix muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"499180f1b5dc405dfb83ee8e3a087c5e2a5c50a90cff03e39923d30d59183398\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"334\",\"quote_id\":\"280\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3200, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"279\",\"date\":\"2025-01-29 16:29:00\",\"reference_no\":\"QUOTE0277\",\"customer_id\":\"1133\",\"customer\":\"John KInyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2c5bb91501a571d012b278a373df4c5d6618ec1824f62c53667dff4332ca3e80\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"333\",\"quote_id\":\"279\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3201, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"278\",\"date\":\"2025-01-29 16:27:00\",\"reference_no\":\"QUOTE0276\",\"customer_id\":\"1132\",\"customer\":\"Joel kIhohia\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ff7a1df737d0081dd857cbcd34b1554b3ff7a6ee727a47969bd0e650c4623bb9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"332\",\"quote_id\":\"278\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3202, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"277\",\"date\":\"2025-01-29 16:25:00\",\"reference_no\":\"QUOTE0275\",\"customer_id\":\"1131\",\"customer\":\"Elias wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-29 16:25:29\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"673172851b3587371068d9d6c3e5541b11527af6dd2257cfc1bd6243d502fe8f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"331\",\"quote_id\":\"277\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3203, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"276\",\"date\":\"2025-01-29 16:11:00\",\"reference_no\":\"QUOTE0274\",\"customer_id\":\"1130\",\"customer\":\"Gladys  Wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"23159bd0bd79a71dbd458e30a02552bc013024d71281019201fb2d8de4c92db4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"329\",\"quote_id\":\"276\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3204, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"275\",\"date\":\"2025-01-29 16:01:00\",\"reference_no\":\"QUOTE0273\",\"customer_id\":\"1129\",\"customer\":\"Julius Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cc4185bc6b145c107faac034a98677f35b2aa5506ac7c6f1d7b8f109bde6cbb8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"328\",\"quote_id\":\"275\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3205, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"274\",\"date\":\"2025-01-29 16:00:00\",\"reference_no\":\"QUOTE0272\",\"customer_id\":\"1128\",\"customer\":\"Jane  Catherine\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1c754ce93e0e796b41fed252d8cf6d439b9ac53a218be41c76a043d00333a08e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"327\",\"quote_id\":\"274\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3206, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"273\",\"date\":\"2025-01-29 15:58:00\",\"reference_no\":\"QUOTE0271\",\"customer_id\":\"1127\",\"customer\":\"Nahashon Waithaji\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5863e0afd7f052289e28dbf93a0b73dd359696fa85420ef1879b08b05160ce1b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"326\",\"quote_id\":\"273\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3207, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"272\",\"date\":\"2025-01-29 15:56:00\",\"reference_no\":\"QUOTE0270\",\"customer_id\":\"1126\",\"customer\":\"murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"66500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"66500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3d72dc79a370ee3203160c5ec50dd86265431dd70a06107b62e9cc1627fbd229\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"325\",\"quote_id\":\"272\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"66500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3208, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"271\",\"date\":\"2025-01-29 15:52:00\",\"reference_no\":\"QUOTE0269\",\"customer_id\":\"1125\",\"customer\":\"Nixson Ukii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a1d382b45a0a67f32a331d7f7bbdde6b993d8f9673ce163d26bdbba776cc125c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"324\",\"quote_id\":\"271\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3209, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"270\",\"date\":\"2025-01-28 16:43:00\",\"reference_no\":\"QUOTE0268\",\"customer_id\":\"1124\",\"customer\":\"Julius Mureithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"80bcb7e7956b4ce990d7e9616bc944f31809e3927921d2c4edb109f0a445b213\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"323\",\"quote_id\":\"270\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3210, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"269\",\"date\":\"2025-01-28 16:36:00\",\"reference_no\":\"QUOTE0267\",\"customer_id\":\"1123\",\"customer\":\"David Mbirui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"45600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f68ddc98cc0ba35f6db00c4398018fcb4c6eef1683b1a1c3bec091315db0b3f1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"322\",\"quote_id\":\"269\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3211, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"268\",\"date\":\"2025-01-28 16:22:00\",\"reference_no\":\"QUOTE0266\",\"customer_id\":\"1122\",\"customer\":\"Christopher Manegene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"88400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"88400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9440c84c03dad1b484abd7ce79efac2dbefeb450e17382c2d81362d3ae80a23e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"319\",\"quote_id\":\"268\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"92.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60125.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"92.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"320\",\"quote_id\":\"268\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15275.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"321\",\"quote_id\":\"268\",\"product_id\":\"1112\",\"product_code\":\"94903006\",\"product_name\":\"harmony propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3212, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"267\",\"date\":\"2025-01-28 16:19:00\",\"reference_no\":\"QUOTE0265\",\"customer_id\":\"1122\",\"customer\":\"Christopher Manegene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"91000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"91000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"32f223e5a9d7485fc7c69cd01e8f37c14024123fd0a78c5e3fdfbd633bf7c989\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"316\",\"quote_id\":\"267\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"91.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"59150.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"91.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"317\",\"quote_id\":\"267\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15275.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"23.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"318\",\"quote_id\":\"267\",\"product_id\":\"1120\",\"product_code\":\"99878087\",\"product_name\":\"Rafano propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"25.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16575.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"25.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3213, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"266\",\"date\":\"2025-01-28 16:10:00\",\"reference_no\":\"QUOTE0264\",\"customer_id\":\"1121\",\"customer\":\"Stephen Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ce2edc5292ae45cd0c759c06f7b0570cf57c1d28da9d34bac66835c0d852685b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"315\",\"quote_id\":\"266\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3214, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"265\",\"date\":\"2025-01-28 16:07:00\",\"reference_no\":\"QUOTE0263\",\"customer_id\":\"1120\",\"customer\":\"Joseph Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"409f822aa4910adb24410dcea57e71c9233438510363e2f63f80c589581a5c93\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"314\",\"quote_id\":\"265\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3215, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"264\",\"date\":\"2025-01-28 16:06:00\",\"reference_no\":\"QUOTE0262\",\"customer_id\":\"1119\",\"customer\":\"Florence Wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"25a54a15129ed856921aafbdb96edea8f299baad3cc37d53410c5f491d7990bc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"313\",\"quote_id\":\"264\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3216, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"263\",\"date\":\"2025-01-28 15:15:00\",\"reference_no\":\"QUOTE0261\",\"customer_id\":\"1118\",\"customer\":\"Julius Kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e778d6aa25b92ac73519ec14e3675427ef0cef39df2d1593f9b14f5a87ce1f28\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"312\",\"quote_id\":\"263\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3217, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"262\",\"date\":\"2025-01-28 15:08:00\",\"reference_no\":\"QUOTE0260\",\"customer_id\":\"1117\",\"customer\":\"peter kibuci\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"44e258e49a13f48006a838684c8ee57899f8a23628c4bf8e857ceaf5df8a5ec5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"310\",\"quote_id\":\"262\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"311\",\"quote_id\":\"262\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3218, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"261\",\"date\":\"2025-01-28 15:06:00\",\"reference_no\":\"QUOTE0259\",\"customer_id\":\"1116\",\"customer\":\"Joseph Muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b67c5509b916c722638d2defc546a82b73fc431286ff468d4c5d59537b453e07\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"309\",\"quote_id\":\"261\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3219, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"260\",\"date\":\"2025-01-28 15:05:00\",\"reference_no\":\"QUOTE0258\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8f3e384f05360f564a6807529d417fc6701f31f9d80d67e5ddde4583e67006f9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"308\",\"quote_id\":\"260\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3220, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"259\",\"date\":\"2025-01-28 15:03:00\",\"reference_no\":\"QUOTE0257\",\"customer_id\":\"1114\",\"customer\":\"Danson wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3d141b48a6e9c8077dcf1ef3d87a33b6561272fbbde2312935c7ae02f699e850\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"307\",\"quote_id\":\"259\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3221, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"258\",\"date\":\"2025-01-28 15:01:00\",\"reference_no\":\"QUOTE0256\",\"customer_id\":\"1113\",\"customer\":\"Edwin karani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"482fc7b6c46aa33aa27c64f3783525022efc26e795272d8ef0f2a1513c9227e3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"306\",\"quote_id\":\"258\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3222, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"257\",\"date\":\"2025-01-28 15:00:00\",\"reference_no\":\"QUOTE0255\",\"customer_id\":\"1112\",\"customer\":\"Millicent Njoka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e00e493d39182f78d6443cff541fa1b9270b0a2416583f7955da9b272cb70ca6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"305\",\"quote_id\":\"257\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3223, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"399\",\"date\":\"2025-01-28 13:06:00\",\"reference_no\":\"QUOTE0397\",\"customer_id\":\"1226\",\"customer\":\"david mugo mugo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"45600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"23c77d1c301887185f9aec60697cecf7903c190396f5c9fbef04714bd704f013\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"469\",\"quote_id\":\"399\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3224, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"398\",\"date\":\"2025-01-28 12:53:00\",\"reference_no\":\"QUOTE0396\",\"customer_id\":\"1225\",\"customer\":\"mugo david\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"45600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45600.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d1d853956acc8a27ce737c4e8e107f8f7b8daf0bf15215262f5c89549401ba15\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"468\",\"quote_id\":\"398\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3225, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"256\",\"date\":\"2025-01-27 16:10:00\",\"reference_no\":\"QUOTE0254\",\"customer_id\":\"1110\",\"customer\":\"michael Thumaita\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30225.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30225.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f2cd0dbef4f8eb8496b6d848a9de70ccbb149578de50c21447ca6282486b780e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"304\",\"quote_id\":\"256\",\"product_id\":\"1119\",\"product_code\":\"30081825\",\"product_name\":\"mix propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"46.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30225.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"46.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3226, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"254\",\"date\":\"2025-01-27 15:58:00\",\"reference_no\":\"QUOTE0252\",\"customer_id\":\"1109\",\"customer\":\"Patrick muthike\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"65db37fe252f06c94718a352836cc0a3904b9e3235871e31aa61400ef0f4888b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"302\",\"quote_id\":\"254\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3227, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"253\",\"date\":\"2025-01-27 15:38:00\",\"reference_no\":\"QUOTE0251\",\"customer_id\":\"1108\",\"customer\":\"peter mwendwa\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e3d8ad3bcc7cad788ecd0a3436daf0fca39af1c86c93b385dfb5ea954a98d97d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"301\",\"quote_id\":\"253\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3228, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"252\",\"date\":\"2025-01-27 15:36:00\",\"reference_no\":\"QUOTE0250\",\"customer_id\":\"1107\",\"customer\":\"elijah gitari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"57f378f7bb0c5b58d597efd4c11828d6a4212b77c9a4beefdf7d4b31402df0a4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"300\",\"quote_id\":\"252\",\"product_id\":\"1118\",\"product_code\":\"45671831\",\"product_name\":\"bareto\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"32.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20800.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"32.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3229, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"251\",\"date\":\"2025-01-27 15:32:00\",\"reference_no\":\"QUOTE0249\",\"customer_id\":\"1106\",\"customer\":\"patrick munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f982b12310bd212b17a6a77eee4cf83c08637a970c2b8f60b7dc8e622e6813a3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"299\",\"quote_id\":\"251\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3230, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"250\",\"date\":\"2025-01-27 15:31:00\",\"reference_no\":\"QUOTE0248\",\"customer_id\":\"308\",\"customer\":\"Charles Gatimu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f21f1ee142a004bdaf4ae8b189ab443b933d26d0e604235c656528d6faeee38f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"298\",\"quote_id\":\"250\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3231, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"249\",\"date\":\"2025-01-27 15:21:00\",\"reference_no\":\"QUOTE0247\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0110b23e616f373dac13a776b6bbc1e1dc55985141a299c5a5bd7a61514faadf\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"296\",\"quote_id\":\"249\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3232, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"248\",\"date\":\"2025-01-27 15:18:00\",\"reference_no\":\"QUOTE0246\",\"customer_id\":\"1105\",\"customer\":\"kelvin kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e230dd13ead2e11ec674e3bc016d3ec1d7b76ecd44ddd8fbcaad201728dabcb4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"295\",\"quote_id\":\"248\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3233, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"247\",\"date\":\"2025-01-27 15:00:00\",\"reference_no\":\"QUOTE0245\",\"customer_id\":\"1104\",\"customer\":\"Jackson maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"133000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"133000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9d16728ac1ad54647e64f2f6275e288f3e2506113d8ff1ad175588efa8ad2f96\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"294\",\"quote_id\":\"247\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"133000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3234, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"246\",\"date\":\"2025-01-27 14:57:00\",\"reference_no\":\"QUOTE0244\",\"customer_id\":\"1103\",\"customer\":\"munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cbf3ddf3ac2b4785dbc12cc15a1300cd566a12c3156268e7b4d232f1836c52c3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"293\",\"quote_id\":\"246\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3235, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"245\",\"date\":\"2025-01-27 14:55:00\",\"reference_no\":\"QUOTE0243\",\"customer_id\":\"1102\",\"customer\":\"charles macharia\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"26600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cd5c58efca78167c63ff60e139ea348b988e5cf04bf92abae1948002f76268ca\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"292\",\"quote_id\":\"245\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"14.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"14.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3236, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"244\",\"date\":\"2025-01-27 14:52:00\",\"reference_no\":\"QUOTE0242\",\"customer_id\":\"1101\",\"customer\":\"Charles Gatimu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ea79d5340dc5d0d8fa6c69474e36101698c6fa6f88055b7c2150d5330b297e12\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"291\",\"quote_id\":\"244\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3237, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"243\",\"date\":\"2025-01-27 14:50:00\",\"reference_no\":\"QUOTE0241\",\"customer_id\":\"1100\",\"customer\":\"peter wamae\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"49400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"49400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0c8fa05a63ed1b98dd0b66db008bdd24d968897a3e344315c55a5cc1e8044a40\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"290\",\"quote_id\":\"243\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"26.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"49400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"26.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3238, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"242\",\"date\":\"2025-01-27 14:45:00\",\"reference_no\":\"QUOTE0240\",\"customer_id\":\"1099\",\"customer\":\"John Mboi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"da0315401946cdedaedbdd80450ed0203c463a38a437c72fcb0b2abd040c7072\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"289\",\"quote_id\":\"242\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3239, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"241\",\"date\":\"2025-01-27 14:42:00\",\"reference_no\":\"QUOTE0239\",\"customer_id\":\"1098\",\"customer\":\"Joseph mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5f7e84d3c25e9c87e1c054a28aa0d5aa8e41071864c1d51289879569149e2bf8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"288\",\"quote_id\":\"241\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3240, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"240\",\"date\":\"2025-01-25 11:38:00\",\"reference_no\":\"QUOTE0238\",\"customer_id\":\"1097\",\"customer\":\"John Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a01025e58667609a8a03b5e44e53de0381f525ca83e0066253023038ce4ca77e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"287\",\"quote_id\":\"240\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3241, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"239\",\"date\":\"2025-01-25 11:07:00\",\"reference_no\":\"QUOTE0237\",\"customer_id\":\"1096\",\"customer\":\"patrick kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4a286b8f3b054c57e6f73dc207d31de634b99f5cab1dfaa508f0a1b81f5ebf81\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"286\",\"quote_id\":\"239\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3242, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"238\",\"date\":\"2025-01-25 09:17:00\",\"reference_no\":\"QUOTE0236\",\"customer_id\":\"1095\",\"customer\":\"Gerishon wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f59207d22ca4fd5385bbb29955f0e7ab3615b9cb936c18ed88556c85af26d941\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"285\",\"quote_id\":\"238\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3243, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"237\",\"date\":\"2025-01-25 09:13:00\",\"reference_no\":\"QUOTE0235\",\"customer_id\":\"1094\",\"customer\":\"BENSON mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"89460e2f96a6438526310b564223462e64d9450f795e6220a36f6e531b25dd9e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"284\",\"quote_id\":\"237\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3244, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"236\",\"date\":\"2025-01-25 09:00:00\",\"reference_no\":\"QUOTE0234\",\"customer_id\":\"1093\",\"customer\":\"samuel gichuhi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"23055262ab6935a4b8a7523a9d39ee995b238ff081df9b707ce2d2a15a55fbce\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"283\",\"quote_id\":\"236\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3245, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"235\",\"date\":\"2025-01-25 08:58:00\",\"reference_no\":\"QUOTE0233\",\"customer_id\":\"1092\",\"customer\":\"purity kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"63b10101ba9a868debe7ebe426116fd82c2db93aa77252690591c39d99f2f197\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"282\",\"quote_id\":\"235\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3246, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"234\",\"date\":\"2025-01-25 08:57:00\",\"reference_no\":\"QUOTE0232\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fcf8eee1e99ca02082350c3a0630aeb5ce75dc2eac053b8937c6330b14fb6d63\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"281\",\"quote_id\":\"234\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3247, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"233\",\"date\":\"2025-01-25 08:55:00\",\"reference_no\":\"QUOTE0231\",\"customer_id\":\"1090\",\"customer\":\"patrick muchiiiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"755b188ba3d797d5a6830a1bb0b8e4fa71b25d152b2da27f28d3bd2f0631bf47\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"280\",\"quote_id\":\"233\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3248, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"232\",\"date\":\"2025-01-25 08:54:00\",\"reference_no\":\"QUOTE0230\",\"customer_id\":\"1089\",\"customer\":\"Virginiah wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5548261e72cfd95822ddc0a3eb537017a21fe23471dc5b9c176987a79afecfea\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"279\",\"quote_id\":\"232\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3249, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"231\",\"date\":\"2025-01-25 08:50:00\",\"reference_no\":\"QUOTE0229\",\"customer_id\":\"1088\",\"customer\":\"John Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0441cc17a64050debc1e6c1377cd2d96fe922d5aada25f5650c9326683718ec8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"278\",\"quote_id\":\"231\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3250, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"230\",\"date\":\"2025-01-25 08:48:00\",\"reference_no\":\"QUOTE0228\",\"customer_id\":\"1087\",\"customer\":\"damaris njeri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3385dadd8b9e42f609c1520b1b2efee9f74cc13c985f2bab6d402be88e305d0e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"277\",\"quote_id\":\"230\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3251, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"229\",\"date\":\"2025-01-25 08:45:00\",\"reference_no\":\"QUOTE0227\",\"customer_id\":\"1086\",\"customer\":\"john murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1365.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1365.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7e6b1023de593cd5731dc9dc3b01a598b041ea2cbb118c3375b687204c2c8d9f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"276\",\"quote_id\":\"229\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1365.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0500\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3252, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"228\",\"date\":\"2025-01-25 08:43:00\",\"reference_no\":\"QUOTE0226\",\"customer_id\":\"1085\",\"customer\":\"John Njoka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0da060f3c7eb3c3a57b5afd74a380ecaa52c4a59058dd422be4519f60b087c4b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"275\",\"quote_id\":\"228\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3253, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"227\",\"date\":\"2025-01-25 08:41:00\",\"reference_no\":\"QUOTE0225\",\"customer_id\":\"1084\",\"customer\":\"samuel kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8fe6c4efff3e0470770b5a829fe79fd1bad59520397321ac18d8641a57590fe7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"274\",\"quote_id\":\"227\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3254, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"226\",\"date\":\"2025-01-25 08:39:00\",\"reference_no\":\"QUOTE0224\",\"customer_id\":\"1083\",\"customer\":\"martin kiragu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8a5a61aad638bd2e9a44bbf72d6f228bc8ca9a6543caae693f512873cd1a6a3e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"273\",\"quote_id\":\"226\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3255, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"225\",\"date\":\"2025-01-25 08:37:00\",\"reference_no\":\"QUOTE0223\",\"customer_id\":\"1082\",\"customer\":\"Kelvin wangai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"df969a60be557557faa4cb4412233895579cfdd2fbd31f2191b6f6e0832a26b7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"272\",\"quote_id\":\"225\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3256, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"224\",\"date\":\"2025-01-25 08:35:00\",\"reference_no\":\"QUOTE0222\",\"customer_id\":\"987\",\"customer\":\"brian\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dc51ef8f8050216f982c90dfbafc544c2ff7f3a131a29ab71e12254a9d687a8a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"271\",\"quote_id\":\"224\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3257, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"223\",\"date\":\"2025-01-25 08:11:00\",\"reference_no\":\"QUOTE0221\",\"customer_id\":\"1081\",\"customer\":\"Daniel Nderitu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"707bc81e1890a7cf0a0c6d4fdbd3a8a5040e2d76cbbbdd69e1ca3a307909066f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"270\",\"quote_id\":\"223\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3258, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"222\",\"date\":\"2025-01-25 08:08:00\",\"reference_no\":\"QUOTE0220\",\"customer_id\":\"1080\",\"customer\":\"amos kangai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9e2a90089fd9d3ee393af006d65c7f811fcb51887911742dcddecead855bd5f6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"269\",\"quote_id\":\"222\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3259, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"221\",\"date\":\"2025-01-25 08:00:00\",\"reference_no\":\"QUOTE0219\",\"customer_id\":\"1079\",\"customer\":\"Francis  Kihara\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a7df6705e4e6edd9c153101cad3bbc544cf673ba20e806948a93053d30b9b1f3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"267\",\"quote_id\":\"221\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"268\",\"quote_id\":\"221\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3260, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"220\",\"date\":\"2025-01-25 07:58:00\",\"reference_no\":\"QUOTE0218\",\"customer_id\":\"1078\",\"customer\":\"Thomas Muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ba3670392d5f11737379f4ed214130208f9b8f7de852dc4983be9982b56891ea\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"265\",\"quote_id\":\"220\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"266\",\"quote_id\":\"220\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3261, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"219\",\"date\":\"2025-01-25 07:56:00\",\"reference_no\":\"QUOTE0217\",\"customer_id\":\"1077\",\"customer\":\"Rosemary Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"631f971fb5f8da5bd18d6071709f8fae817888f288ef465805d877cc927e4592\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"264\",\"quote_id\":\"219\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3262, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"218\",\"date\":\"2025-01-25 07:55:00\",\"reference_no\":\"QUOTE0216\",\"customer_id\":\"1076\",\"customer\":\"patrick muriiiiimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"14cf4417cbbe912a428bf67f1e449614e21e07659f4a6779fcde4657b287ad3c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"263\",\"quote_id\":\"218\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3263, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"217\",\"date\":\"2025-01-25 07:53:00\",\"reference_no\":\"QUOTE0215\",\"customer_id\":\"1075\",\"customer\":\"Donald  Mutiso\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"85500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"85500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8abb5c1904c675ed22569499a881359a898760df4d4f48f4f6e128e2cc69048e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"262\",\"quote_id\":\"217\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"45.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"45.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3264, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"216\",\"date\":\"2025-01-25 07:52:00\",\"reference_no\":\"QUOTE0214\",\"customer_id\":\"1074\",\"customer\":\"Joseph Kibui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"73b91c8064c2371f0ff595184a07bf56b70d65ca58717eafbd04d2b65b0cd4d0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"261\",\"quote_id\":\"216\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3265, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"214\",\"date\":\"2025-01-24 09:24:00\",\"reference_no\":\"QUOTE0212\",\"customer_id\":\"1073\",\"customer\":\"David Maai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"983b905e34b05610e90666435c493cd17ba494cd9c2de37a6484608ebce40211\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"258\",\"quote_id\":\"214\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3266, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"445\",\"date\":\"2025-01-23 15:38:00\",\"reference_no\":\"QUOTE0443\",\"customer_id\":\"1155\",\"customer\":\"Duncan Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6a34601ece28833521309bd6ba75af9952a1ad3b1b17a935c49e17ba85a23424\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"520\",\"quote_id\":\"445\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3267, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"213\",\"date\":\"2025-01-22 15:04:00\",\"reference_no\":\"QUOTE0211\",\"customer_id\":\"1072\",\"customer\":\"peter muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"152000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"152000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"85fb733157ec19023d1bd018aaaa545aaa57534561329311a66bf1b07e2db2a0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"257\",\"quote_id\":\"213\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"80.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"152000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"80.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3268, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"212\",\"date\":\"2025-01-21 16:47:00\",\"reference_no\":\"QUOTE0210\",\"customer_id\":\"1071\",\"customer\":\"Benson Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"267aba7d08d185ca84cbba865700ff4257ea1330c5565e1a79404cbb99abe891\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"256\",\"quote_id\":\"212\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3269, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"211\",\"date\":\"2025-01-21 16:45:00\",\"reference_no\":\"QUOTE0209\",\"customer_id\":\"1070\",\"customer\":\"Peter Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b7e6eb85a654adc1ea0b70c34401bcedba209c15eff1dd325813fba40fa2fe52\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"255\",\"quote_id\":\"211\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3270, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"210\",\"date\":\"2025-01-21 16:43:00\",\"reference_no\":\"QUOTE0208\",\"customer_id\":\"1069\",\"customer\":\"peter Muthingani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d30bc5e205dd2cf98d579ba70c1c3a8bcda6316b06b9fad737f367531db1b89d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"254\",\"quote_id\":\"210\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7800.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3271, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"209\",\"date\":\"2025-01-21 16:41:00\",\"reference_no\":\"QUOTE0207\",\"customer_id\":\"1068\",\"customer\":\"John Mutugi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"8900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a1b78f3a7ddcf9b853bfef3497b99309587b7c62e6997632840023013939a7d7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"252\",\"quote_id\":\"209\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"253\",\"quote_id\":\"209\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3272, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"208\",\"date\":\"2025-01-21 16:39:00\",\"reference_no\":\"QUOTE0206\",\"customer_id\":\"1067\",\"customer\":\"John Githu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3b372cfd623cd71f2614f6c7a88cec4c1b6b8fbbb22806e7955ac08afa965a47\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"251\",\"quote_id\":\"208\",\"product_id\":\"1117\",\"product_code\":\"27618411\",\"product_name\":\"rambo\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3273, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"207\",\"date\":\"2025-01-21 10:17:00\",\"reference_no\":\"QUOTE0205\",\"customer_id\":\"1065\",\"customer\":\"Josiah kagai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"88adc8404594304633a4d9b6a1e55182b3de3b936457dfd5d657d14f8e73ff10\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"250\",\"quote_id\":\"207\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3274, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"206\",\"date\":\"2025-01-21 10:15:00\",\"reference_no\":\"QUOTE0204\",\"customer_id\":\"1064\",\"customer\":\"Samuel Gichohi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5523f6c0f3ee4ca9e1a96858942f4dbfcb1c28a5b4ae7c1de2b8a55cd7ce79c6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"249\",\"quote_id\":\"206\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3275, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"205\",\"date\":\"2025-01-21 09:57:00\",\"reference_no\":\"QUOTE0203\",\"customer_id\":\"1063\",\"customer\":\"Eliud\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"17b9d8fe31f208a1055f91bea7a295304f0b486045b2d68dc30e6c2467f4b5b6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"248\",\"quote_id\":\"205\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3276, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"204\",\"date\":\"2025-01-21 09:55:00\",\"reference_no\":\"QUOTE0202\",\"customer_id\":\"1062\",\"customer\":\"Joseph Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-21 09:56:27\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"01d820bde5facb7fded5ad2b9eea77635cb818912f7920db9af17334f2dbaba7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"247\",\"quote_id\":\"204\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3277, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"203\",\"date\":\"2025-01-21 09:54:00\",\"reference_no\":\"QUOTE0201\",\"customer_id\":\"1061\",\"customer\":\"Daniel Njiraini\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1af4730c563703e23dc87ced5e9f2f870fc1cba8c63a28ec2ca232abea287d65\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"245\",\"quote_id\":\"203\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3278, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"202\",\"date\":\"2025-01-21 09:49:00\",\"reference_no\":\"QUOTE0200\",\"customer_id\":\"1060\",\"customer\":\"Ndambiri Ngoroi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e6e1acdcef2fde9b26c036db2608f3fe667fe65915ff456d9fedd78bd1b61538\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"244\",\"quote_id\":\"202\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3279, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"201\",\"date\":\"2025-01-21 09:46:00\",\"reference_no\":\"QUOTE0199\",\"customer_id\":\"1059\",\"customer\":\"Jane Wanjiku\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"530cf652c7fbcfc79a3e3514e572f947ff3edae039d750476a9de3772c1be8f6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"243\",\"quote_id\":\"201\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3280, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"200\",\"date\":\"2025-01-21 09:43:00\",\"reference_no\":\"QUOTE0198\",\"customer_id\":\"1058\",\"customer\":\"Harrison Njiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"957661836decfad02f10e01ca2f5f79c8ef00519607f16e442141e408490fe60\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"242\",\"quote_id\":\"200\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3281, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"199\",\"date\":\"2025-01-21 09:41:00\",\"reference_no\":\"QUOTE0197\",\"customer_id\":\"719\",\"customer\":\"Benjamin Komu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c12a4e09a509848c6bf55c9352fa41881ff3d87d369bc1d513e0fe1785e3c2b1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"241\",\"quote_id\":\"199\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3282, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"198\",\"date\":\"2025-01-21 09:40:00\",\"reference_no\":\"QUOTE0196\",\"customer_id\":\"1057\",\"customer\":\"Samuel cabbage\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"97b3d5337e5a60880c5714e7c32156de7bd6ef474f70f39a1c67298b30e10d4b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"240\",\"quote_id\":\"198\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3283, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"397\",\"date\":\"2025-01-20 12:38:00\",\"reference_no\":\"QUOTE0395\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"36100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"36100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6094bf6df9aa77311cc58abe519bcc8067ce9d5ae8ac4eda4a7cf774eb0232a8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"467\",\"quote_id\":\"397\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3284, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"197\",\"date\":\"2025-01-18 14:07:00\",\"reference_no\":\"QUOTE0195\",\"customer_id\":\"1056\",\"customer\":\"Benard maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"52325.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"52325.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0ee05996dbbb602daf1014d64b10983092e43a6dfa0b65fa9250276ecb7f119c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"239\",\"quote_id\":\"197\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"80.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"52325.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"80.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3285, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"196\",\"date\":\"2025-01-18 14:02:00\",\"reference_no\":\"QUOTE0194\",\"customer_id\":\"1055\",\"customer\":\"virginiah Nyawira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ae69e2f9c9e714eedf66d787d37a483819cadc989937dd76b1f6219e461822ab\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"238\",\"quote_id\":\"196\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3286, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"195\",\"date\":\"2025-01-18 14:00:00\",\"reference_no\":\"QUOTE0193\",\"customer_id\":\"1054\",\"customer\":\"Ibra\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cf9af597d886700cba0ec0d14c81694d46b32721784957dbe6025c0df0571751\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"237\",\"quote_id\":\"195\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3287, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"396\",\"date\":\"2025-01-18 12:16:00\",\"reference_no\":\"QUOTE0394\",\"customer_id\":\"980\",\"customer\":\"edwin wakini\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b484fd648cdda2ca9765cbaf66d55dde1cc97a0b881e9ccd22fe3798d399278b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"466\",\"quote_id\":\"396\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3288, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"194\",\"date\":\"2025-01-18 09:33:00\",\"reference_no\":\"QUOTE0192\",\"customer_id\":\"1053\",\"customer\":\"Jamleck munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"78db6cd8077dab35a157b936e4e9b93f43d0fcaa50546c0e5bae30851a31fce2\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"236\",\"quote_id\":\"194\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"34200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3289, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"193\",\"date\":\"2025-01-18 09:25:00\",\"reference_no\":\"QUOTE0191\",\"customer_id\":\"1052\",\"customer\":\"Lewis macharia wanjohi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c8c0a8dd0e57cbb84b1ea717d705ac27296ccd3678eec16dfce76981cc25e437\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"235\",\"quote_id\":\"193\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3290, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"192\",\"date\":\"2025-01-18 09:17:00\",\"reference_no\":\"QUOTE0190\",\"customer_id\":\"1051\",\"customer\":\"Boniface Murage\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5c8003e38bb4ce68bb17b253466b6a9d808727ce5703ecc5ebf3fdcd21883728\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"234\",\"quote_id\":\"192\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3291, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"190\",\"date\":\"2025-01-18 09:02:00\",\"reference_no\":\"QUOTE0188\",\"customer_id\":\"1049\",\"customer\":\"Muchiri Crucial\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"155025.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"155025.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1b6f499eacbc25a492ef845f286e5bf82e5cdadb474e476485a2305695378f25\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"231\",\"quote_id\":\"190\",\"product_id\":\"1100\",\"product_code\":\"14639397\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"37050.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"232\",\"quote_id\":\"190\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"181.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"117975.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"181.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3292, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"188\",\"date\":\"2025-01-17 08:37:00\",\"reference_no\":\"QUOTE0186\",\"customer_id\":\"1048\",\"customer\":\"Monicah Nyanguthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:57:07\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e5e494dc04d6f247bb1f4bac2fdb34b5163126de012f774cc407e0522b1a1088\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"227\",\"quote_id\":\"188\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3293, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"187\",\"date\":\"2025-01-17 08:35:00\",\"reference_no\":\"QUOTE0185\",\"customer_id\":\"1047\",\"customer\":\"Joseph ndama\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:56:54\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1339514c7e63fb88b842cbff76257b9e4cdb3d630a89fa5e197374c333f55ee4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"226\",\"quote_id\":\"187\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3294, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"186\",\"date\":\"2025-01-16 17:16:00\",\"reference_no\":\"QUOTE0184\",\"customer_id\":\"1046\",\"customer\":\"Patrick Waweru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22425.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22425.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4e8d4ba419caa25507ce941e1549ef874808784fcfc0d9e95738e7d3f7ff70a3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"220\",\"quote_id\":\"186\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"34.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22425.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"34.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3295, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"185\",\"date\":\"2025-01-16 17:07:00\",\"reference_no\":\"QUOTE0183\",\"customer_id\":\"1045\",\"customer\":\"Samuel Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"43875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"43875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8f2425211066284ec71b296454f92e4ccfd3689bb17d5a68543b79ba701de587\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"219\",\"quote_id\":\"185\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"67.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"43875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"67.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3296, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"184\",\"date\":\"2025-01-16 16:55:00\",\"reference_no\":\"QUOTE0182\",\"customer_id\":\"1044\",\"customer\":\"Daniel Karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4750.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4750.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"baf4399972fa212e058415fee2cc9563bad424140bac0ba96b8d7f20fdc8ccc1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"218\",\"quote_id\":\"184\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4750.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3297, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"183\",\"date\":\"2025-01-16 16:52:00\",\"reference_no\":\"QUOTE0181\",\"customer_id\":\"1043\",\"customer\":\"Anthony Githaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e2eaf42aa0a35334cf0b5b291bb20a8881bf54d127df8ac77b0dd639b5914d6f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"217\",\"quote_id\":\"183\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3298, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"182\",\"date\":\"2025-01-16 16:50:00\",\"reference_no\":\"QUOTE0180\",\"customer_id\":\"1042\",\"customer\":\"Anthony Ndege\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8cbfdb5b6e1a6464d063c36708780bcfb6e6742b8b47fe738c180dbc16e434fb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"216\",\"quote_id\":\"182\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3299, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"181\",\"date\":\"2025-01-16 16:49:00\",\"reference_no\":\"QUOTE0179\",\"customer_id\":\"1021\",\"customer\":\"Erastus Mburu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d4bd1a434d9e25e6788e6b7bea50b43a14960df2a386990f7ab360a3f7fcc922\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"215\",\"quote_id\":\"181\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3300, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"180\",\"date\":\"2025-01-16 16:48:00\",\"reference_no\":\"QUOTE0178\",\"customer_id\":\"1041\",\"customer\":\"francis kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"8300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8df3c84f66a18633f7bf826a8779d3529895f86ebd8251dc50ed41f92fbf9aa5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"213\",\"quote_id\":\"180\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"214\",\"quote_id\":\"180\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3301, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"179\",\"date\":\"2025-01-16 16:46:00\",\"reference_no\":\"QUOTE0177\",\"customer_id\":\"1040\",\"customer\":\"Benard Mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4df58612a015253ee0834f506b1c0eaafd55850794d543025977a57b21539687\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"212\",\"quote_id\":\"179\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3302, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"178\",\"date\":\"2025-01-16 16:45:00\",\"reference_no\":\"QUOTE0176\",\"customer_id\":\"1039\",\"customer\":\"catherine wanjira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"91e399d771da6cd0857530f7b6769f5e32afbf9550e9508b87971f9348cfe64b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"211\",\"quote_id\":\"178\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3303, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"482\",\"date\":\"2025-01-16 12:59:00\",\"reference_no\":\"QUOTE0480\",\"customer_id\":\"1289\",\"customer\":\"Agnes Wangari  kiburi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"73ed191c1fdcd7f99c72047a27e1b42e03fc0fa2fd160484489691bb21aba8fb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"558\",\"quote_id\":\"482\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3304, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"395\",\"date\":\"2025-01-15 11:38:00\",\"reference_no\":\"QUOTE0393\",\"customer_id\":\"1224\",\"customer\":\"Joyce wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cdf861ed62e60630fa5efd555f4184c996b1a4cbf6dd1ca3af0cee95af4c39e9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"465\",\"quote_id\":\"395\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3305, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"177\",\"date\":\"2025-01-15 10:54:00\",\"reference_no\":\"QUOTE0175\",\"customer_id\":\"1038\",\"customer\":\"stephen kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cd130b1170402f0231014e776e26dfeb3f352b668dcbf5e801f17e9f9857805a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"210\",\"quote_id\":\"177\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3306, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"176\",\"date\":\"2025-01-15 10:42:00\",\"reference_no\":\"QUOTE0174\",\"customer_id\":\"1037\",\"customer\":\"paul githaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"133000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"133000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"26870ed7217a1bba11d7bfb886558fe95381afccc11a38073ee7acfd24d676d4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"209\",\"quote_id\":\"176\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"133000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3307, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"175\",\"date\":\"2025-01-15 10:33:00\",\"reference_no\":\"QUOTE0173\",\"customer_id\":\"1036\",\"customer\":\"milton wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"68400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"68400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"767ea9bd1f425e35e46e1187a2b139b3c0b441e4a8249c12e91ccb8a8142614f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"208\",\"quote_id\":\"175\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"68400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3308, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"174\",\"date\":\"2025-01-15 10:19:00\",\"reference_no\":\"QUOTE0172\",\"customer_id\":\"1035\",\"customer\":\"isaiah muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3b2dbf77c110bdd2dbc143085a543880f990a2710cb462db39abc8b62628d485\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"207\",\"quote_id\":\"174\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3309, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"173\",\"date\":\"2025-01-15 10:18:00\",\"reference_no\":\"QUOTE0171\",\"customer_id\":\"1034\",\"customer\":\"naftlaly maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f2b02f7ca40e434aa42a591bd2f2b7c5a04f89c2dc31fd16685f4c37a66adb13\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"206\",\"quote_id\":\"173\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3310, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"172\",\"date\":\"2025-01-15 10:16:00\",\"reference_no\":\"QUOTE0170\",\"customer_id\":\"1033\",\"customer\":\"Francis njeru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e55750d9495c7ecb817cfc1e1737cef18c3469a6192701cf76020f9d708f285c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"205\",\"quote_id\":\"172\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3311, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"171\",\"date\":\"2025-01-15 10:04:00\",\"reference_no\":\"QUOTE0169\",\"customer_id\":\"1032\",\"customer\":\"MIrriam Wanjira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a56e50e176e02972aaed35ac4f8c3f14390d2ae9f206d5fb0738eca25a794550\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"204\",\"quote_id\":\"171\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3312, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"170\",\"date\":\"2025-01-14 13:52:00\",\"reference_no\":\"QUOTE0168\",\"customer_id\":\"1031\",\"customer\":\"Virginiah wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"24700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"24700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"594f4cb801cf9c4360aa3f8af3c794eaa02dc57fd4449b59b312a19d9c3a25f0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"203\",\"quote_id\":\"170\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"13.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3313, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"169\",\"date\":\"2025-01-14 13:17:00\",\"reference_no\":\"QUOTE0167\",\"customer_id\":\"1030\",\"customer\":\"henry\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bcaa4d9c0fff0dfade22821f78cc1bbb0a730ffe0f6a88b5a0b39b7aa07ed2e3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"202\",\"quote_id\":\"169\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3314, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"168\",\"date\":\"2025-01-14 13:16:00\",\"reference_no\":\"QUOTE0166\",\"customer_id\":\"1029\",\"customer\":\"justus ikanya\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"daa711b12eeecb9fd3933911dd57c4b1725babeacc03815c553f4ef02680c8a4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"201\",\"quote_id\":\"168\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3315, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"167\",\"date\":\"2025-01-14 13:14:00\",\"reference_no\":\"QUOTE0165\",\"customer_id\":\"1028\",\"customer\":\"hannah wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"db7fa1197198bd104916b5a91a1047ebde763a7d89b4e861d93352aef44e74ea\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"200\",\"quote_id\":\"167\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2600.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3316, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"166\",\"date\":\"2025-01-14 13:13:00\",\"reference_no\":\"QUOTE0164\",\"customer_id\":\"1027\",\"customer\":\"simon mumbu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a457a296c5a7ddc8b241131197a1ddd9b072bdf2a82078da652a544fc7b00a49\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"199\",\"quote_id\":\"166\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"57000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3317, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"165\",\"date\":\"2025-01-14 13:11:00\",\"reference_no\":\"QUOTE0163\",\"customer_id\":\"1026\",\"customer\":\"John Ndunge\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"25000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"25000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5c458ede60d8a2d865111090469bee66fc375c65553cceaa1f8bc0497a5a4b0b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"198\",\"quote_id\":\"165\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3318, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"394\",\"date\":\"2025-01-14 11:29:00\",\"reference_no\":\"QUOTE0392\",\"customer_id\":\"1223\",\"customer\":\"Joseph Kimani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"666dfd98b233708b9e6a596a9de38decc12f9d9053be60e0310d9a27e79eda27\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"464\",\"quote_id\":\"394\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3319, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"164\",\"date\":\"2025-01-14 10:03:00\",\"reference_no\":\"QUOTE0162\",\"customer_id\":\"1025\",\"customer\":\"Patrick Njeru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"&lt;p&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&lt;&sol;p&gt;\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d3b3fd6c3962dae5cdfaeb3a7ba5d512835f7ed94d46363156640acbdb153c89\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"197\",\"quote_id\":\"164\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3320, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"163\",\"date\":\"2025-01-14 09:51:00\",\"reference_no\":\"QUOTE0161\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"08302851a5664fcb7f0f6ec9989a9d31c8f6e998d7db46b2d549bd64848c09b6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"196\",\"quote_id\":\"163\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14300.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3321, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"162\",\"date\":\"2025-01-14 09:47:00\",\"reference_no\":\"QUOTE0160\",\"customer_id\":\"1024\",\"customer\":\"Allan Ngongo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1379e9880d1c50c3b6793b8b2df7417170eaf4080a34d3ace5deb6053878c8e7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"195\",\"quote_id\":\"162\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3322, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"161\",\"date\":\"2025-01-14 09:45:00\",\"reference_no\":\"QUOTE0159\",\"customer_id\":\"1023\",\"customer\":\"Joseph  kimani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"526304e1e8f618c4a6ba474494966f21582b3f4cb8ad4f169ea2cf369938f63b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"194\",\"quote_id\":\"161\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3323, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"160\",\"date\":\"2025-01-14 09:42:00\",\"reference_no\":\"QUOTE0158\",\"customer_id\":\"1022\",\"customer\":\"justus murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c7d0c74706edd2d95828082ccd3fe3b3b19277513a4c9a2f6ba411cf2f925368\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"193\",\"quote_id\":\"160\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3324, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"159\",\"date\":\"2025-01-14 08:52:00\",\"reference_no\":\"QUOTE0157\",\"customer_id\":\"1021\",\"customer\":\"Erastus Mburu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"18b60f8b5a86914369252c563dd6071acab9bbc903d11b15ac32e80a02f36593\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"192\",\"quote_id\":\"159\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3325, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"158\",\"date\":\"2025-01-14 08:37:00\",\"reference_no\":\"QUOTE0156\",\"customer_id\":\"1020\",\"customer\":\"Gera;ld Munyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"633a539545e73fed7e9b525c3c56b3c94d76995c66542062ae994a499af030d3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"191\",\"quote_id\":\"158\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3326, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"156\",\"date\":\"2025-01-13 17:17:00\",\"reference_no\":\"QUOTE0154\",\"customer_id\":\"1019\",\"customer\":\"james waithaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5016.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5016.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4b85e8459e9a618fdf45fb6f64d71236074a636dfc94a8bb401d6179e8d67182\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"189\",\"quote_id\":\"156\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.6350\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5016.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.6400\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3327, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"155\",\"date\":\"2025-01-13 17:16:00\",\"reference_no\":\"QUOTE0153\",\"customer_id\":\"1018\",\"customer\":\"sarah muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"82381497057f3e8b244aca360b208c290fb275bd0e7e5801ebd6b6215843688c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"188\",\"quote_id\":\"155\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3328, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"154\",\"date\":\"2025-01-13 17:12:00\",\"reference_no\":\"QUOTE0152\",\"customer_id\":\"1017\",\"customer\":\"christopher muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e26da292fbec42bde111db83cea1185209b4f2bc03524c67124a1d27f35ab7e6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"187\",\"quote_id\":\"154\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3329, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"153\",\"date\":\"2025-01-13 17:09:00\",\"reference_no\":\"QUOTE0151\",\"customer_id\":\"1016\",\"customer\":\"johnstone kiratu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3436883feed76d7e6c8c7afddcc9c286b646b5132bdd0edd4edd487da876e5d2\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"186\",\"quote_id\":\"153\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3330, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"152\",\"date\":\"2025-01-13 17:06:00\",\"reference_no\":\"QUOTE0150\",\"customer_id\":\"1015\",\"customer\":\"naftaly muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"97c9cd50ae818f05810deabd0c193088566e52e8fd1e700bf02a4e697ba8fc55\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"185\",\"quote_id\":\"152\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3331, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"151\",\"date\":\"2025-01-13 17:00:00\",\"reference_no\":\"QUOTE0149\",\"customer_id\":\"522\",\"customer\":\"John Mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8d9cacd6bcd0a9bc1b04975a070f932eec18af5871e50a35643ee5deb7a77076\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"184\",\"quote_id\":\"151\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3332, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"150\",\"date\":\"2025-01-13 16:59:00\",\"reference_no\":\"QUOTE0148\",\"customer_id\":\"1014\",\"customer\":\"lewis karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fcf93713eb07bc3fcdd29416a9fbf62ebd941c2ee2898289ada2275a5dd9a084\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"183\",\"quote_id\":\"150\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3333, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"149\",\"date\":\"2025-01-13 16:51:00\",\"reference_no\":\"QUOTE0147\",\"customer_id\":\"1013\",\"customer\":\"leonard muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ddc3b1801c3e96f31000b6aba55778e3566d14e68a8bdc5061dbeca152d815a4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"182\",\"quote_id\":\"149\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3334, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"148\",\"date\":\"2025-01-13 16:47:00\",\"reference_no\":\"QUOTE0146\",\"customer_id\":\"1012\",\"customer\":\"Geoffrey muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11550.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11550.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"05a06360bc909b382d5019f76c0fadeed959190a4a70cb57a65e52819e30254c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"181\",\"quote_id\":\"148\",\"product_id\":\"1108\",\"product_code\":\"44647149\",\"product_name\":\"maxibell\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11550.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"16.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3335, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"147\",\"date\":\"2025-01-13 13:39:00\",\"reference_no\":\"QUOTE0145\",\"customer_id\":\"1011\",\"customer\":\"peterson gichobi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dc507af53bca97145198bb2a3ce45a6ce459d9fd4b1cf38b785ad585143dc2bd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"180\",\"quote_id\":\"147\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3336, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"146\",\"date\":\"2025-01-13 13:34:00\",\"reference_no\":\"QUOTE0144\",\"customer_id\":\"1010\",\"customer\":\"stephen njiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"17cc6e5e318c136eb36de54e5dbd219cab3fa2d917ec008a80aece81c584e062\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"179\",\"quote_id\":\"146\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3200.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3337, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"145\",\"date\":\"2025-01-13 13:23:00\",\"reference_no\":\"QUOTE0143\",\"customer_id\":\"1009\",\"customer\":\"david mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7b50b073e0cc8044000916783b5b623ebf36f12d1ea4b4ddbc2501b72f1a3407\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"178\",\"quote_id\":\"145\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3338, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"144\",\"date\":\"2025-01-13 13:17:00\",\"reference_no\":\"QUOTE0142\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4ecdadb62a11b959326d335b7fddd30d5fc7c3afa4abff6d4fdabf0515f9bc72\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"177\",\"quote_id\":\"144\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3339, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"143\",\"date\":\"2025-01-13 13:15:00\",\"reference_no\":\"QUOTE0141\",\"customer_id\":\"1007\",\"customer\":\"james githaka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5b8b337cbb774ff661489475dbc665ca1328b3271711031cac064400bebc0262\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"176\",\"quote_id\":\"143\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3340, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"142\",\"date\":\"2025-01-13 13:12:00\",\"reference_no\":\"QUOTE0140\",\"customer_id\":\"1006\",\"customer\":\"edward kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8f58fece441b5bb1008331994d7a17866de6b650cf20e4b0bcbe947c3351b206\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"175\",\"quote_id\":\"142\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3341, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"141\",\"date\":\"2025-01-13 13:08:00\",\"reference_no\":\"QUOTE0139\",\"customer_id\":\"1005\",\"customer\":\"john mucebio\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c5b234b821755b7d94d9d263475e3d476e6f22f31b4f5840a3f9b1c675b811f0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"174\",\"quote_id\":\"141\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3342, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"140\",\"date\":\"2025-01-13 13:07:00\",\"reference_no\":\"QUOTE0138\",\"customer_id\":\"1004\",\"customer\":\"milton wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"68400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"68400.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"20e2eca290912ca5f04592530fded77dfda900538bd2b323b7f09ffac493e077\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"173\",\"quote_id\":\"140\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"36.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"68400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"36.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3343, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"139\",\"date\":\"2025-01-13 13:06:00\",\"reference_no\":\"QUOTE0137\",\"customer_id\":\"1003\",\"customer\":\"lazarus mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"76000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d51a2c4fd41930789cd5e0e3cba98e8cc9c522cf5d8f3c64fa335aee0f0270da\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"172\",\"quote_id\":\"139\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3344, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"138\",\"date\":\"2025-01-13 13:02:00\",\"reference_no\":\"QUOTE0136\",\"customer_id\":\"1002\",\"customer\":\"eric munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"6231bf5c9d1fd96e16b3a2a8697805d54276d6b0b8832ea8790f73d9db6cd63c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"171\",\"quote_id\":\"138\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3345, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"137\",\"date\":\"2025-01-13 12:59:00\",\"reference_no\":\"QUOTE0135\",\"customer_id\":\"1001\",\"customer\":\"mary kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"209000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"209000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5f3e2d6b0d7a31fc58754aa965467baa18ce3e96a3b906e880bc5c9aae7cdd38\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"170\",\"quote_id\":\"137\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"110.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"209000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"110.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3346, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"136\",\"date\":\"2025-01-13 12:57:00\",\"reference_no\":\"QUOTE0134\",\"customer_id\":\"1000\",\"customer\":\"peter\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0c6b26be4af1499909990faf0667b11bbcf1e202c4166706e0b11d4e7f2417d8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"169\",\"quote_id\":\"136\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"3.7500\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"3.7500\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3347, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"135\",\"date\":\"2025-01-13 12:54:00\",\"reference_no\":\"QUOTE0133\",\"customer_id\":\"999\",\"customer\":\"christopher wanjohi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9735aaa7f9e33eff8adcc5cb07a34693151f67f759b25f04aeb75e73bcb9c104\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"168\",\"quote_id\":\"135\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3348, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"134\",\"date\":\"2025-01-13 12:52:00\",\"reference_no\":\"QUOTE0132\",\"customer_id\":\"998\",\"customer\":\"paul\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"42648d3ae64f04c8b2d9ddebb5e704db65e636e189797ef7edf562fe41ec5def\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"167\",\"quote_id\":\"134\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3349, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"133\",\"date\":\"2025-01-13 12:51:00\",\"reference_no\":\"QUOTE0131\",\"customer_id\":\"997\",\"customer\":\"macharia\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"29e1170ccf1a6157722c2f0f551467c0db970f2f5dfcd7ba4927d2c659bec40a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"166\",\"quote_id\":\"133\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3350, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"132\",\"date\":\"2025-01-13 12:46:00\",\"reference_no\":\"QUOTE0130\",\"customer_id\":\"996\",\"customer\":\"James kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e23cda9ab1a1968f38fcb277c1bcc69487130e11e64f78984933b1af67718db5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"165\",\"quote_id\":\"132\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3351, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"131\",\"date\":\"2025-01-13 12:44:00\",\"reference_no\":\"QUOTE0129\",\"customer_id\":\"995\",\"customer\":\"luke miano\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a025a161d2a4cb4c8ec6d384489b663eb06c3d42c6e7054c38bf8ddccb0e3042\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"164\",\"quote_id\":\"131\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3352, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"130\",\"date\":\"2025-01-13 12:40:00\",\"reference_no\":\"QUOTE0128\",\"customer_id\":\"994\",\"customer\":\"Roseline NYaki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ffd904253e5a8d33460405436d6ccb248acfdc6c6521f59171e6be87db2c06b8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"163\",\"quote_id\":\"130\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3353, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"393\",\"date\":\"2025-01-13 11:18:00\",\"reference_no\":\"QUOTE0391\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"19a68ebd953e7537cdf6276165039902ca43c2e351f88f99d103350b84884ecb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"463\",\"quote_id\":\"393\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3354, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"392\",\"date\":\"2025-01-13 11:12:00\",\"reference_no\":\"QUOTE0390\",\"customer_id\":\"855\",\"customer\":\"Lazarus\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"76000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fbf10244ca91d6940cb84201d15316c2e249cf4599073611975b8047de4df5a7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"462\",\"quote_id\":\"392\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3355, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"391\",\"date\":\"2025-01-11 10:39:00\",\"reference_no\":\"QUOTE0389\",\"customer_id\":\"1222\",\"customer\":\"John Gitonga\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7150.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7150.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a69fb0fd0001545ccf7c379215234a7cc8ac09be4b3c8a3c55db3a2586f81567\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"461\",\"quote_id\":\"391\",\"product_id\":\"1099\",\"product_code\":\"37493378\",\"product_name\":\"nova propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7150.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3356, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"215\",\"date\":\"2025-01-11 09:29:00\",\"reference_no\":\"QUOTE0213\",\"customer_id\":\"303\",\"customer\":\"Peter Njuguna\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-24 09:33:01\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"21835502e0d83798a7a1e41608072e3cf8e45203aa0f3fde2feea77a806c22ba\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"260\",\"quote_id\":\"215\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3357, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"128\",\"date\":\"2025-01-10 16:03:00\",\"reference_no\":\"QUOTE0126\",\"customer_id\":\"992\",\"customer\":\"michael gitwe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ece366586c00552e00daba5c1bf13f18a0e8441115356c9990d81d54adaf198f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"161\",\"quote_id\":\"128\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3358, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"127\",\"date\":\"2025-01-10 15:40:00\",\"reference_no\":\"QUOTE0125\",\"customer_id\":\"991\",\"customer\":\"samuel muthii\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1891ca24f70c162b88f7bb24482dca8eab47a1161383ccee50ff04453cd25545\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"160\",\"quote_id\":\"127\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3359, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"126\",\"date\":\"2025-01-10 13:40:00\",\"reference_no\":\"QUOTE0124\",\"customer_id\":\"990\",\"customer\":\"phyllis kimotho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e64b609fe4ed98d84ddfcaddcbc9ee954c710fc2486af71fa9f8e21c350938e3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"157\",\"quote_id\":\"126\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3360, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"125\",\"date\":\"2025-01-10 13:34:00\",\"reference_no\":\"QUOTE0123\",\"customer_id\":\"989\",\"customer\":\"eric wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0d3cd6254394dd1959ea383dd4db9820bec08ab0011ea678183ab44fd96dc6d5\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"156\",\"quote_id\":\"125\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3361, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"124\",\"date\":\"2025-01-10 13:32:00\",\"reference_no\":\"QUOTE0122\",\"customer_id\":\"988\",\"customer\":\"josphat maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2c1e9ea0319d267f60bc9c5a686414e4c4d4f16cedab918237e0e2ae6c57cab6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"155\",\"quote_id\":\"124\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3362, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"123\",\"date\":\"2025-01-10 10:30:00\",\"reference_no\":\"QUOTE0121\",\"customer_id\":\"987\",\"customer\":\"brian\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e41be468234f8dbefebb5a46b302001f344e6232d22f5c0863defc06c714efab\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"154\",\"quote_id\":\"123\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3363, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"122\",\"date\":\"2025-01-10 10:29:00\",\"reference_no\":\"QUOTE0120\",\"customer_id\":\"986\",\"customer\":\"boniface kamau\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3250.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3250.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1fd6a2c8f23a0e102e1eb44455594e7a116f1dee3de1bea95eeaf9bf56b56f31\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"153\",\"quote_id\":\"122\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3250.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3364, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"121\",\"date\":\"2025-01-10 10:27:00\",\"reference_no\":\"QUOTE0119\",\"customer_id\":\"985\",\"customer\":\"mrs kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"94879692b39d9af3da8379e98174e8ee86f5d589edbe53e917d2148be27c8618\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"152\",\"quote_id\":\"121\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3365, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"120\",\"date\":\"2025-01-10 10:25:00\",\"reference_no\":\"QUOTE0118\",\"customer_id\":\"984\",\"customer\":\"lazarus muthike\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4872c3165972d8952b8792c0735d8eea3eec51c69224aaab2f96ce66b2ee325b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"151\",\"quote_id\":\"120\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"60.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"114000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"60.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3366, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"119\",\"date\":\"2025-01-10 10:22:00\",\"reference_no\":\"QUOTE0117\",\"customer_id\":\"983\",\"customer\":\"patrick muchiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8983e9a6bd53273f2dfc8e8258248afa5a17acfd09c9d35b48aac11ed8a05967\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"150\",\"quote_id\":\"119\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3367, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"118\",\"date\":\"2025-01-10 10:19:00\",\"reference_no\":\"QUOTE0116\",\"customer_id\":\"982\",\"customer\":\"peter kamu20nde\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"29000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"29000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"63493e3323fbcc7a10f5debce192e1ef8acd835dbd979f16eb0290e30d7ba92b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"148\",\"quote_id\":\"118\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"149\",\"quote_id\":\"118\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3368, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"113\",\"date\":\"2025-01-10 09:32:00\",\"reference_no\":\"QUOTE0111\",\"customer_id\":\"977\",\"customer\":\"John mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a697490e908038c413782d3ee0c53e1e35821ec7b8a7d578bab16187008a2651\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"138\",\"quote_id\":\"113\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"139\",\"quote_id\":\"113\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3369, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"112\",\"date\":\"2025-01-10 09:15:00\",\"reference_no\":\"QUOTE0110\",\"customer_id\":\"976\",\"customer\":\"muthomi maringa\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4dbad09be70d2632ef9868d29d2e96c3ab205bd3786959af9c1153554ded8ebb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"137\",\"quote_id\":\"112\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3370, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"111\",\"date\":\"2025-01-10 09:01:00\",\"reference_no\":\"QUOTE0109\",\"customer_id\":\"975\",\"customer\":\"francis karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d4364df128106ce7e78bef096e153bdd6ddcf9ed20014bc3a8323aa762f5fce4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"136\",\"quote_id\":\"111\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3371, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"110\",\"date\":\"2025-01-10 08:58:00\",\"reference_no\":\"QUOTE0108\",\"customer_id\":\"974\",\"customer\":\"peter\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1901.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1901.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 08:59:43\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fcaf8f5097aa790d98bd021ce59afad9d5094d9925a7ac099bd39cd51db0fadc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"134\",\"quote_id\":\"110\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.7900\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1501.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.7900\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"135\",\"quote_id\":\"110\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3372, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"109\",\"date\":\"2025-01-10 08:55:00\",\"reference_no\":\"QUOTE0107\",\"customer_id\":\"973\",\"customer\":\"murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"171000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"171000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"fa41241b60eac1ae5fac111f6e360c72be75a86455856d9897e79a3eff363bcf\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"132\",\"quote_id\":\"109\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"90.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"171000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"90.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3373, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"108\",\"date\":\"2025-01-10 08:54:00\",\"reference_no\":\"QUOTE0106\",\"customer_id\":\"972\",\"customer\":\"joseph murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f2382dad6a6e74fa69f7dbd86557676e66ca51427719ccb5d1cdeace30337383\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"131\",\"quote_id\":\"108\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3374, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"107\",\"date\":\"2025-01-10 08:50:00\",\"reference_no\":\"QUOTE0105\",\"customer_id\":\"971\",\"customer\":\"Duncan munyi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dbb116ac398ba8a21c421cfc3e8f752a591bc42fb6ed568c1cb80a4308481631\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"130\",\"quote_id\":\"107\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3375, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"106\",\"date\":\"2025-01-09 11:21:00\",\"reference_no\":\"QUOTE0104\",\"customer_id\":\"970\",\"customer\":\"reuben mwenda\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3575.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3575.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"12562672f73b8e5923d0eeb8fd89824cccdd23c43729ea4c589206960699f631\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"129\",\"quote_id\":\"106\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"5.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3575.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"5.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3376, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"105\",\"date\":\"2025-01-09 11:10:00\",\"reference_no\":\"QUOTE0103\",\"customer_id\":\"969\",\"customer\":\"peter  njuguna\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"650.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"650.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ee1e65ae751c0bea5e8d35c98bca3fb2ae36f032178eb0f2f72c40dab4bd2f6d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"128\",\"quote_id\":\"105\",\"product_id\":\"1113\",\"product_code\":\"06705895\",\"product_name\":\"squash\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3377, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"104\",\"date\":\"2025-01-09 11:03:00\",\"reference_no\":\"QUOTE0102\",\"customer_id\":\"968\",\"customer\":\"stephen wamwea\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5be326afaefcb3373436b073e3bbae1924f4797e803d6181b7cef4746539f3fd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"127\",\"quote_id\":\"104\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3378, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"103\",\"date\":\"2025-01-09 10:56:00\",\"reference_no\":\"QUOTE0101\",\"customer_id\":\"967\",\"customer\":\"kinyua murigu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15700.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15700.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 15:34:13\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"927cb278e740df8dce3c3bc15840473c9af70c7a035b4a63490d6ee32fab2cb7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"158\",\"quote_id\":\"103\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"159\",\"quote_id\":\"103\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3379, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"102\",\"date\":\"2025-01-09 10:52:00\",\"reference_no\":\"QUOTE0100\",\"customer_id\":\"966\",\"customer\":\"felista wanjiru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-27 15:24:04\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"705a60987d21892c3fcf8313e40bda82b1fef1b6a5539a3baab43c1346208d5c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"297\",\"quote_id\":\"102\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3380, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"101\",\"date\":\"2025-01-09 10:49:00\",\"reference_no\":\"QUOTE0099\",\"customer_id\":\"965\",\"customer\":\"cyrus wambui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f3a82bdf2b9dba6ece8c4cf9be942ea6a85b353c46c91926feae114be4ad1493\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"124\",\"quote_id\":\"101\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3381, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"100\",\"date\":\"2025-01-09 10:44:00\",\"reference_no\":\"QUOTE0098\",\"customer_id\":\"964\",\"customer\":\"harrison wambugu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-09 10:44:37\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e89989b4545e805e687f6288a135f91ac02b996ad5666c185f30adf7e6cacd23\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"123\",\"quote_id\":\"100\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3382, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"99\",\"date\":\"2025-01-09 10:34:00\",\"reference_no\":\"QUOTE0097\",\"customer_id\":\"963\",\"customer\":\"johnson mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"59ffaaf30b6eb3cdc98ada10f9650b748e3089b63aebae6ef31248347ab20f4c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"121\",\"quote_id\":\"99\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3383, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"97\",\"date\":\"2025-01-09 10:27:00\",\"reference_no\":\"QUOTE0095\",\"customer_id\":\"961\",\"customer\":\"david nguku\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"884.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"884.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"34138eb666e9236aa757a845fb654a70f2de3f3451063676ee3ee96cf7e814d4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"119\",\"quote_id\":\"97\",\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"0.6750\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"884.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.6800\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3384, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"95\",\"date\":\"2025-01-09 09:49:00\",\"reference_no\":\"QUOTE0093\",\"customer_id\":\"959\",\"customer\":\"stephen kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4b1a00cfc19577a861beb33b21de3cff91e9b79fb0a2364d239d470aac6b2ff0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"117\",\"quote_id\":\"95\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32300.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"17.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3385, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"94\",\"date\":\"2025-01-09 09:45:00\",\"reference_no\":\"QUOTE0092\",\"customer_id\":\"958\",\"customer\":\"joseph muchoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"34bd87bfea3c6c5622e02e70fed9d86d5b02e82279c9f98d4e4b7e411c0c0c99\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"116\",\"quote_id\":\"94\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3386, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"92\",\"date\":\"2025-01-09 09:20:00\",\"reference_no\":\"QUOTE0090\",\"customer_id\":\"956\",\"customer\":\"martin njanja\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5850.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5850.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f47712cc1e9c244ba8f3366e7274f83a5a50dc1db987343029fb3f47850a3126\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"114\",\"quote_id\":\"92\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5850.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3387, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"91\",\"date\":\"2025-01-09 09:06:00\",\"reference_no\":\"QUOTE0089\",\"customer_id\":\"955\",\"customer\":\"erick muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"788609b30a583894be94bac4c375e2bb1e4ed50ad05b5ff9c78f9f979c9e5024\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"111\",\"quote_id\":\"91\",\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9100.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"112\",\"quote_id\":\"91\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"113\",\"quote_id\":\"91\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3388, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"129\",\"date\":\"2025-01-08 12:10:00\",\"reference_no\":\"QUOTE0127\",\"customer_id\":\"993\",\"customer\":\"catherine mbuitu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3804a39754209a36840e5ebc08836370902dad9dbddb78ecb930911d18a8de8c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"162\",\"quote_id\":\"129\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3389, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"98\",\"date\":\"2025-01-08 10:31:00\",\"reference_no\":\"QUOTE0096\",\"customer_id\":\"962\",\"customer\":\"martin\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7aeec933f3493c07cb67b572249a11c1cd0ebf255f19c2c3496501a5d114f31b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"120\",\"quote_id\":\"98\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3390, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"90\",\"date\":\"2025-01-07 15:53:00\",\"reference_no\":\"QUOTE0088\",\"customer_id\":\"953\",\"customer\":\"josphat karimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7803b3ed4c0d93bf0b42e850b83d89c26985290d51bfd597d70298526dd39794\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"110\",\"quote_id\":\"90\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3391, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"89\",\"date\":\"2025-01-07 15:49:00\",\"reference_no\":\"QUOTE0087\",\"customer_id\":\"954\",\"customer\":\"besnon mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-07 15:50:31\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"76cf27adef3e52537cbbdfc2aa0a3df456eed786df6af90463ef66ae50338919\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"109\",\"quote_id\":\"89\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3392, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"86\",\"date\":\"2025-01-07 15:11:00\",\"reference_no\":\"QUOTE0084\",\"customer_id\":\"951\",\"customer\":\"judy muthoni(margaret gathaiga)\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ca74e3bf870b1c4c292964e9bc53a0c12cec1ff6116fb3ddd5c19ac21eeabda0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"104\",\"quote_id\":\"86\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"0.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"105\",\"quote_id\":\"86\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3393, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"85\",\"date\":\"2025-01-07 15:08:00\",\"reference_no\":\"QUOTE0083\",\"customer_id\":\"950\",\"customer\":\"collins gachoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9cb1cb11a0ad239c9492e1fb20da7f1e9007c87a2192afbaabf4e2d9d5f02617\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"103\",\"quote_id\":\"85\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"16.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3394, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"84\",\"date\":\"2025-01-07 15:05:00\",\"reference_no\":\"QUOTE0082\",\"customer_id\":\"949\",\"customer\":\"david karatu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8ca4b91c0947ad1db67867d1b589d24a460648659734691702bf73dd7308a116\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"102\",\"quote_id\":\"84\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3800.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3395, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"83\",\"date\":\"2025-01-07 15:01:00\",\"reference_no\":\"QUOTE0081\",\"customer_id\":\"948\",\"customer\":\"james githaiga\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1727f302c7d8c39c031b0e5f8bc0654607ba0014788c1bca829f9d760fc00fc3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"101\",\"quote_id\":\"83\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20900.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"11.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3396, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"82\",\"date\":\"2025-01-07 14:54:00\",\"reference_no\":\"QUOTE0080\",\"customer_id\":\"947\",\"customer\":\"james miano\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b75f067bfc0b7d9b8520678b7fec05b32e6c5d5330ba279aa68b426aaea2b1ad\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"100\",\"quote_id\":\"82\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3397, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"81\",\"date\":\"2025-01-06 16:04:00\",\"reference_no\":\"QUOTE0079\",\"customer_id\":\"496\",\"customer\":\"Damaris\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a8a767f7a2042a13396f19c575da515321aa21fde3c81b32ab22342dbb502667\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"99\",\"quote_id\":\"81\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15200.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3398, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"117\",\"date\":\"2025-01-06 10:15:00\",\"reference_no\":\"QUOTE0115\",\"customer_id\":\"981\",\"customer\":\"issac mugweru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6500.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:15:50\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bd7ef28b9e4cebb0e39b4bc1fac485f22034ec0c1a5bf63e91ce25b753384f27\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"144\",\"quote_id\":\"117\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3399, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"116\",\"date\":\"2025-01-06 10:12:00\",\"reference_no\":\"QUOTE0114\",\"customer_id\":\"980\",\"customer\":\"edwin wakini\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:16:11\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"28d01c7eab1b3e218790cc1f9f75a27c280ad4c91a726ef2d33dd3300c2c7073\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"145\",\"quote_id\":\"116\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3400, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"115\",\"date\":\"2025-01-06 10:06:00\",\"reference_no\":\"QUOTE0113\",\"customer_id\":\"979\",\"customer\":\"david mubari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:16:28\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ac0daaf55abf5e690d07f1cd46a74be2e84bf1c5e5fe6a3a998d557969d17efd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"146\",\"quote_id\":\"115\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3401, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"114\",\"date\":\"2025-01-06 10:04:00\",\"reference_no\":\"QUOTE0112\",\"customer_id\":\"978\",\"customer\":\"edward munene\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-10 10:16:44\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"72520bd140bfd939199887129a074e40e7c39b76b3eb9d295c7500be7ea857f6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"147\",\"quote_id\":\"114\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3402, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"80\",\"date\":\"2025-01-04 09:17:00\",\"reference_no\":\"QUOTE0078\",\"customer_id\":\"945\",\"customer\":\"John muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3241f36a463ba41548dd509c079eaf0078eb77ddb7f6fe03f1504b2ef32ceccd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"98\",\"quote_id\":\"80\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3403, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"79\",\"date\":\"2025-01-04 09:09:00\",\"reference_no\":\"QUOTE0077\",\"customer_id\":\"140\",\"customer\":\"Peter karani\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"548d2c9c60fbc9840e739c6cd95fee0c36e8b243995424845135c802c712f517\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"97\",\"quote_id\":\"79\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3404, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"77\",\"date\":\"2025-01-04 08:54:00\",\"reference_no\":\"QUOTE0075\",\"customer_id\":\"943\",\"customer\":\"peterson kiama\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e5eea586acdcb9c2bafb51efefb055301a33faa026c3716262ede54c46ee4004\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"95\",\"quote_id\":\"77\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3405, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"76\",\"date\":\"2025-01-04 08:52:00\",\"reference_no\":\"QUOTE0074\",\"customer_id\":\"943\",\"customer\":\"peterson kiama\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"11400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"11400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e6d28e5e3e4ce3fa750db42af46a3c8b3d4d73552a1b2d004fd4cd119264025f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"94\",\"quote_id\":\"76\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11400.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3406, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"75\",\"date\":\"2025-01-02 15:05:00\",\"reference_no\":\"QUOTE0073\",\"customer_id\":\"942\",\"customer\":\"george ngatia\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"92c0730aea5740b6ffded1875ee6b49a15fafb8bac3e4e121bf9877cb0a180d9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"93\",\"quote_id\":\"75\",\"product_id\":\"1112\",\"product_code\":\"94903006\",\"product_name\":\"harmony propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5200.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3407, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"74\",\"date\":\"2025-01-02 15:00:00\",\"reference_no\":\"QUOTE0072\",\"customer_id\":\"884\",\"customer\":\"Laston Murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7fb34a6243bdc30b664de5e0cb5655d1af5326f82b14ae5d5107953538a669e4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"92\",\"quote_id\":\"74\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3408, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"73\",\"date\":\"2025-01-02 14:27:00\",\"reference_no\":\"QUOTE0071\",\"customer_id\":\"941\",\"customer\":\"benson warui\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"76000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d5010086efca6bc459fe4d04df849e5c4fe2773df5afd70f1bfeab4f21825b3b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"91\",\"quote_id\":\"73\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3409, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"72\",\"date\":\"2025-01-02 14:25:00\",\"reference_no\":\"QUOTE0070\",\"customer_id\":\"940\",\"customer\":\"david riua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d1a58c108b698bec78168c0c979a970c12054ebff4320a95b62bb039f8fb7b3a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"90\",\"quote_id\":\"72\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3410, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"71\",\"date\":\"2025-01-02 14:24:00\",\"reference_no\":\"QUOTE0069\",\"customer_id\":\"939\",\"customer\":\"dennis wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"35f08aba3c7d8d2de9aa68d0b171f95724975c9e91e507664f18358df8b1f4f0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"89\",\"quote_id\":\"71\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7600.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3411, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"70\",\"date\":\"2025-01-02 14:20:00\",\"reference_no\":\"QUOTE0068\",\"customer_id\":\"938\",\"customer\":\"geoffrey murage\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"30000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"30000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1f61bb89ae1149656767ac941edc8d09b6f37982ac9f353640ee1105bc6d71c0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"87\",\"quote_id\":\"70\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"88\",\"quote_id\":\"70\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3412, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"69\",\"date\":\"2025-01-02 14:13:00\",\"reference_no\":\"QUOTE0067\",\"customer_id\":\"937\",\"customer\":\"john mark\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cf0bde15a0355bff8912e28790608b88907ecd668967469751ac546ad5b5c1b0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"86\",\"quote_id\":\"69\",\"product_id\":\"1102\",\"product_code\":\"30008477\",\"product_name\":\"crown\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3413, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"68\",\"date\":\"2025-01-02 14:08:00\",\"reference_no\":\"QUOTE0066\",\"customer_id\":\"936\",\"customer\":\"samuel wachira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"20cb933ee3613bd3e741ce1c325b5463e757510697277959d65057e9089a3ed6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"85\",\"quote_id\":\"68\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.8000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.8000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3414, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"67\",\"date\":\"2025-01-02 13:58:00\",\"reference_no\":\"QUOTE0065\",\"customer_id\":\"935\",\"customer\":\"geoffrey gitari\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5406fb258bf699a2b3d2a01090e1a133bf30078256f6874bd87e136cf27958cc\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"83\",\"quote_id\":\"67\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"84\",\"quote_id\":\"67\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3415, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"66\",\"date\":\"2024-12-31 16:58:00\",\"reference_no\":\"QUOTE0064\",\"customer_id\":\"593\",\"customer\":\"Elija Kiura\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"48000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"48000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"840bd35b95c309e02e261504f0cb08ed03d3b6290bda29e002ab9babbd1b7e98\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"82\",\"quote_id\":\"66\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"24.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"48000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"24.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3416, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"65\",\"date\":\"2024-12-31 12:31:00\",\"reference_no\":\"QUOTE0063\",\"customer_id\":\"934\",\"customer\":\"JOSEPH kasioni\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"74000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"74000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1d4f2a909566237eb06af152702b3dcdd6f33551ba8d9777d3d1db5a171d6799\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"81\",\"quote_id\":\"65\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"74000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3417, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"64\",\"date\":\"2024-12-31 12:28:00\",\"reference_no\":\"QUOTE0062\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"74000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"74000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b9010c36ae9ec4a68397ff7bad2f97e810f1eb032a998e9ab3fd7fa0605edadd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"80\",\"quote_id\":\"64\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"37.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"74000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"37.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3418, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"63\",\"date\":\"2024-12-31 12:25:00\",\"reference_no\":\"QUOTE0061\",\"customer_id\":\"933\",\"customer\":\"Peter Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"13000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a9b3d4b99faf577427ba9d74a9e0196a84b96054d9a488b31be681200d923b41\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"79\",\"quote_id\":\"63\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3419, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"62\",\"date\":\"2024-12-30 17:43:00\",\"reference_no\":\"QUOTE0060\",\"customer_id\":\"894\",\"customer\":\"Anthony Mbula\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7a396e82cbce030511f5a62827ab27bf4d21ba5ec1142ee9298c37a059ebd27e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"76\",\"quote_id\":\"62\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3420, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"61\",\"date\":\"2024-12-30 17:41:00\",\"reference_no\":\"QUOTE0059\",\"customer_id\":\"932\",\"customer\":\"Benjamin Haraka\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2011d859148cfc36d7e9b22955c691e82c123cb2e80f8d795d816b2726f87b20\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"75\",\"quote_id\":\"61\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3421, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"60\",\"date\":\"2024-12-30 14:52:00\",\"reference_no\":\"QUOTE0058\",\"customer_id\":\"930\",\"customer\":\"Jeremiah Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"91a1d5580f50ad925761b676683b8c309fd25af7ec9586f840603c6752bf7068\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"74\",\"quote_id\":\"60\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3422, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"59\",\"date\":\"2024-12-30 14:44:00\",\"reference_no\":\"QUOTE0057\",\"customer_id\":\"929\",\"customer\":\"Nancy Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b5c59b04a2ede9aaedd60c8466c399ce61ddf10ac84ec0f52edb8bc604321ea6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"73\",\"quote_id\":\"59\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3423, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"57\",\"date\":\"2024-12-30 14:33:00\",\"reference_no\":\"QUOTE0055\",\"customer_id\":\"928\",\"customer\":\"Stephen Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8dcb0a1f14ed63a0eafb1d8b7d962705db75373f6ffda65a92817618569cfbd1\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"71\",\"quote_id\":\"57\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3424, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"56\",\"date\":\"2024-12-30 14:06:00\",\"reference_no\":\"QUOTE0054\",\"customer_id\":\"927\",\"customer\":\"Simon Kabinda\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"719a222531a3e540464e87dbecfbfa6d0d0cd13850b55752584f98d3cecbc49d\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"70\",\"quote_id\":\"56\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3425, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"55\",\"date\":\"2024-12-30 13:59:00\",\"reference_no\":\"QUOTE0053\",\"customer_id\":\"926\",\"customer\":\"Phyllis Kimotho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"dd3d0e0b1092b92faeca3df5486941ce65f78461fc5d910dd3045ff471f2f3a3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"69\",\"quote_id\":\"55\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3426, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"54\",\"date\":\"2024-12-30 13:57:00\",\"reference_no\":\"QUOTE0052\",\"customer_id\":\"524\",\"customer\":\"Harrison Njeru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4af72dfaaf303cf060ff5acd20c9d9d59fc6062975b1a632c75806513b770d34\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"68\",\"quote_id\":\"54\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3427, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"53\",\"date\":\"2024-12-30 11:27:00\",\"reference_no\":\"QUOTE0051\",\"customer_id\":\"925\",\"customer\":\"Ephantus Gichangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"45500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"45500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a4b057973834c7a2f006893769e749f73ca08ee8fc1e70916d1817f38c016190\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"67\",\"quote_id\":\"53\",\"product_id\":\"1110\",\"product_code\":\"16181938\",\"product_name\":\"f2\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"70.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45500.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"70.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3428, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"51\",\"date\":\"2024-12-30 09:23:00\",\"reference_no\":\"QUOTE0050\",\"customer_id\":\"923\",\"customer\":\"Nahashon Maina\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c56f7eaab04f6f6d45272ff1ddeeba05ff9ac6363d1c0dca6400b6ef4b78b649\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"64\",\"quote_id\":\"51\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3429, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"50\",\"date\":\"2024-12-30 09:20:00\",\"reference_no\":\"QUOTE0049\",\"customer_id\":\"922\",\"customer\":\"Paul Murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"1c4f737f225e0de1d922dcbbf78856421a4fbc47dfcc1b1d7da8cb1451564928\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"63\",\"quote_id\":\"50\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3430, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"49\",\"date\":\"2024-12-28 13:15:00\",\"reference_no\":\"QUOTE0048\",\"customer_id\":\"921\",\"customer\":\"Douglas Kinyua\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"262da024e210480bb55766d10245867cb574b773d7b605f8d146c04dde205d60\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"62\",\"quote_id\":\"49\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3431, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"48\",\"date\":\"2024-12-28 12:44:00\",\"reference_no\":\"QUOTE0047\",\"customer_id\":\"920\",\"customer\":\"Michael\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"24c9c79479d1a95d0185e77b83358d41e2efa4fb9b836270734a91afe6fb9ddd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"61\",\"quote_id\":\"48\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"19.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"38000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"19.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3432, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"47\",\"date\":\"2024-12-28 12:35:00\",\"reference_no\":\"QUOTE0046\",\"customer_id\":\"919\",\"customer\":\"samson  cucumber\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"90e39e044436c27379017c8f594a446a0d0ee0cebcae94f89f195e3d3883a553\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"60\",\"quote_id\":\"47\",\"product_id\":\"1104\",\"product_code\":\"90314158\",\"product_name\":\"cucumber\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"4.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2925.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"4.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3433, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"46\",\"date\":\"2024-12-28 12:01:00\",\"reference_no\":\"QUOTE0045\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"31000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"31000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"00cafc40a02bc35c3a4f810740cd03bdfc1e9eee982267a63ddf5deca0ed512e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"57\",\"quote_id\":\"46\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"58\",\"quote_id\":\"46\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"59\",\"quote_id\":\"46\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3434, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"44\",\"date\":\"2024-12-28 11:35:00\",\"reference_no\":\"QUOTE0043\",\"customer_id\":\"917\",\"customer\":\"Peterson Mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"8000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7e8ca002e512fd398f69845fddfb541d9dce49b76fd62e71b9e7fdf2c301ea81\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"54\",\"quote_id\":\"44\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3435, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"43\",\"date\":\"2024-12-28 11:30:00\",\"reference_no\":\"QUOTE0042\",\"customer_id\":\"205\",\"customer\":\"Msome\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"50000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"90a968442bee4469d66d38973e3befe5ce425cc82b096ec4ab6aecaee2067bc8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"52\",\"quote_id\":\"43\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"25.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"25.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"53\",\"quote_id\":\"43\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3436, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"52\",\"date\":\"2024-12-28 11:30:00\",\"reference_no\":\"QUOTE0042\",\"customer_id\":\"924\",\"customer\":\"Nzomo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"40000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"40000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"2b2c739eb4adc02871de9155e89b9e972458236fca1fa1c511ce547d13bc036e\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"66\",\"quote_id\":\"52\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3437, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"42\",\"date\":\"2024-12-28 11:29:00\",\"reference_no\":\"QUOTE0041\",\"customer_id\":\"916\",\"customer\":\"Benjamin  Koomu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-30 09:52:21\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5070b8d630dda9b5700bda83b329a55a59c15445ff9138d242e0579039620416\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"65\",\"quote_id\":\"42\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3438, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"41\",\"date\":\"2024-12-28 11:24:00\",\"reference_no\":\"QUOTE0040\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"70000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"70000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a78f015c4e29bbe679c2942ac12886b03ae4f76e5e6c49bb2dc3558a43f80fdd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"50\",\"quote_id\":\"41\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"35.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"70000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"35.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3439, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"40\",\"date\":\"2024-12-28 11:19:00\",\"reference_no\":\"QUOTE0039\",\"customer_id\":\"914\",\"customer\":\"Richard Migwi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"aab8213312d5b31ee47095bb53bdb87417a8c82ffa3c56ec4bdace42534f2b03\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"49\",\"quote_id\":\"40\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3440, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"37\",\"date\":\"2024-12-28 11:01:00\",\"reference_no\":\"QUOTE0036\",\"customer_id\":\"911\",\"customer\":\"Johnson Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a26bcbed24dc950b0d691a770b59ebff445407e2508d1aaca515398db4dbb5cd\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"43\",\"quote_id\":\"37\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3441, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"34\",\"date\":\"2024-12-28 10:46:00\",\"reference_no\":\"QUOTE0033\",\"customer_id\":\"909\",\"customer\":\"Charles Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"e37df232a0fd1aa06dd53b8cbf846f0caf0c72ac958f01f1099d9bb388711f70\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"38\",\"quote_id\":\"34\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3442, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"33\",\"date\":\"2024-12-28 10:43:00\",\"reference_no\":\"QUOTE0032\",\"customer_id\":\"908\",\"customer\":\"Jane Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"0c92bb0ac67f79b5c655faa79d08418c314b224477b90a9029246b25d4e2f3d9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"37\",\"quote_id\":\"33\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3443, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"36\",\"date\":\"2024-12-27 10:59:00\",\"reference_no\":\"QUOTE0035\",\"customer_id\":\"911\",\"customer\":\"Johnson Mwangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 10:59:34\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b0f155f0abbe1efd1dc7f66ee7d4b085ae10fe809905ba5d8bbb4243b1e1f77b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"42\",\"quote_id\":\"36\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3444, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"35\",\"date\":\"2024-12-27 10:51:00\",\"reference_no\":\"QUOTE0034\",\"customer_id\":\"910\",\"customer\":\"Peter Chomba\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 10:52:59\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f3c4eb2822006f2126e5a0e1cf30c4d595e3385c538c503f04dc76c52dec31b3\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"40\",\"quote_id\":\"35\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3445, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"38\",\"date\":\"2024-12-27 10:30:00\",\"reference_no\":\"QUOTE0037\",\"customer_id\":\"912\",\"customer\":\"David\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-31 12:22:57\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4f4cecfe761a9fa93d06da5a8659483aef7c495035a0fb06a6a5023e6e6ea6bb\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"78\",\"quote_id\":\"38\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3446, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"45\",\"date\":\"2024-12-26 11:50:00\",\"reference_no\":\"QUOTE0044\",\"customer_id\":\"915\",\"customer\":\"Ebenezzar\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"80000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"80000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:43:19\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b01efa2da1541405e50d8cf19c673aa7001ba28979e951c7bdf82ed463676128\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"56\",\"quote_id\":\"45\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3447, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"32\",\"date\":\"2024-12-24 13:38:00\",\"reference_no\":\"QUOTE0031\",\"customer_id\":\"907\",\"customer\":\"Ambrose Bundi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"396b47b48b2a912fc8097d77232590476b22c85d132107c79f1d0e9a076e0bd6\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"36\",\"quote_id\":\"32\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"0.4000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.4000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3448, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"31\",\"date\":\"2024-12-24 13:27:00\",\"reference_no\":\"QUOTE0030\",\"customer_id\":\"906\",\"customer\":\"John muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14950.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14950.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"833240c0b207201cbea33de44c372957b5a07a61da1fadb218af14b9b725502b\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"35\",\"quote_id\":\"31\",\"product_id\":\"1109\",\"product_code\":\"91872895\",\"product_name\":\"royal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14950.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"23.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3449, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"30\",\"date\":\"2024-12-24 13:22:00\",\"reference_no\":\"QUOTE0029\",\"customer_id\":\"905\",\"customer\":\"patrick murimi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7cb26f873190a1efcb186a26116f19e7c0fc5a4df597b11380cedde6ad638e38\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"34\",\"quote_id\":\"30\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3450, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"29\",\"date\":\"2024-12-24 13:11:00\",\"reference_no\":\"QUOTE0028\",\"customer_id\":\"897\",\"customer\":\"james kangethe\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"44000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"44000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"9a369e4afc1b3adfad1acd1be4f544e32bf842b0f5a80da7acede63f1b5ca7ae\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"33\",\"quote_id\":\"29\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"44000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3451, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"28\",\"date\":\"2024-12-24 13:01:00\",\"reference_no\":\"QUOTE0027\",\"customer_id\":\"904\",\"customer\":\"david mugo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"33000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"33000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"5bafd74cb6705fdacd14bc45447f917205f9c32debbd7ad798f3caf9e311cace\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"32\",\"quote_id\":\"28\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"16.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"33000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"16.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3452, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"27\",\"date\":\"2024-12-24 12:54:00\",\"reference_no\":\"QUOTE0026\",\"customer_id\":\"890\",\"customer\":\"Benson Mugweru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"796c2d4908442863a09b065198b138e8f2aeb39998493190a102920365b13c7f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"31\",\"quote_id\":\"27\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3453, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"26\",\"date\":\"2024-12-24 12:48:00\",\"reference_no\":\"QUOTE0025\",\"customer_id\":\"903\",\"customer\":\"leonard\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4200.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4200.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"bca6222cd7a25fa0e85527f2615e5ae223525d1e0556f68c0cbb964ca84c19ea\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"30\",\"quote_id\":\"26\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4200.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3454, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"25\",\"date\":\"2024-12-24 12:34:00\",\"reference_no\":\"QUOTE0024\",\"customer_id\":\"166\",\"customer\":\"Elias mwai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"585925e59031535c25983fd397ecfecaf1e1e3cf18d1a648af408dc901997402\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"29\",\"quote_id\":\"25\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3455, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"24\",\"date\":\"2024-12-24 10:44:00\",\"reference_no\":\"QUOTE0023\",\"customer_id\":\"902\",\"customer\":\"Amos Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"420e9abce9769f9b6aa41cf21e85361ccfb59d5a917b122b66ffabc778365f9c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"28\",\"quote_id\":\"24\",\"product_id\":\"1072\",\"product_code\":\"10206750\",\"product_name\":\"spinach f1\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3456, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"23\",\"date\":\"2024-12-24 10:36:00\",\"reference_no\":\"QUOTE0022\",\"customer_id\":\"901\",\"customer\":\"Benson\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"14000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"14000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b19e2d2c0761e3c7ff4fe877d91ba3aa89107a03f7f72c086cd66d677a6009ad\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"27\",\"quote_id\":\"23\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3457, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"22\",\"date\":\"2024-12-24 10:19:00\",\"reference_no\":\"QUOTE0021\",\"customer_id\":\"900\",\"customer\":\"Cyrus Gichira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"21775.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21775.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"hash\":\"e6b54f328e6ab732876bfab80ad6b736880890fb2d6b0cf13e4dad8627b84598\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"26\",\"quote_id\":\"22\",\"product_id\":\"1105\",\"product_code\":\"38902836\",\"product_name\":\"melon\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"33.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21775.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"33.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3458, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"21\",\"date\":\"2024-12-24 09:38:00\",\"reference_no\":\"QUOTE0020\",\"customer_id\":\"899\",\"customer\":\"Joseph Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"d786bafbf2aa072b09a76e4d48c4862bb73163c3eb14e470d6db902401855cda\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"25\",\"quote_id\":\"21\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3459, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"20\",\"date\":\"2024-12-24 09:35:00\",\"reference_no\":\"QUOTE0019\",\"customer_id\":\"898\",\"customer\":\"Benson muchiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c83279924765e7e5d78878634e48ce49a9f25602bd04b2338b7dfd36561a84b0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"24\",\"quote_id\":\"20\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3460, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"17\",\"date\":\"2024-12-23 16:40:00\",\"reference_no\":\"QUOTE0016\",\"customer_id\":\"896\",\"customer\":\"samuel maringa\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ffa98af29b762a64a6f2dd517cf34f0706ed33f5994e2935f2dce5198fdffbd8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"21\",\"quote_id\":\"17\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3461, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"16\",\"date\":\"2024-12-23 16:37:00\",\"reference_no\":\"QUOTE0015\",\"customer_id\":\"895\",\"customer\":\"lucy njiraini\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"10000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"3cdc25096e8feaa8d8190bcc8bff361e45d5a97cc6a49cc74de5cc4abf31b1ed\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"20\",\"quote_id\":\"16\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3462, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"15\",\"date\":\"2024-12-23 15:50:00\",\"reference_no\":\"QUOTE0014\",\"customer_id\":\"893\",\"customer\":\"Geoffrey muriiithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2400.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2400.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ae7518413052f904fcf3068124be33674f29214432a42967f8dc895c36f41738\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"18\",\"quote_id\":\"15\",\"product_id\":\"1012\",\"product_code\":\"14415533\",\"product_name\":\"harmony\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"19\",\"quote_id\":\"15\",\"product_id\":\"1017\",\"product_code\":\"16473929\",\"product_name\":\" victoria\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"0.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3463, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"14\",\"date\":\"2024-12-23 15:34:00\",\"reference_no\":\"QUOTE0013\",\"customer_id\":\"892\",\"customer\":\"priscillah wanjira\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"16000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"63b0d33d7c867a1affb0d742c01868c3e8ac9ce832194327c6ecabcfe5d46aa9\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"17\",\"quote_id\":\"14\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3464, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"13\",\"date\":\"2024-12-23 15:28:00\",\"reference_no\":\"QUOTE0012\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"665dd4a75615174ae68d818c6d1625b70d7c53b2bed3ccf85a89d10357ed3048\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"16\",\"quote_id\":\"13\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3465, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"12\",\"date\":\"2024-12-23 15:16:00\",\"reference_no\":\"QUOTE0011\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"db9c2d3947553738b74613033d6082ad586bdb578191cd34778b2206e8985bc8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"15\",\"quote_id\":\"12\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3466, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"11\",\"date\":\"2024-12-23 15:10:00\",\"reference_no\":\"QUOTE0010\",\"customer_id\":\"891\",\"customer\":\"Nicholas muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"f5d3a887ebf8dd789de79df3d9f1f79e8e94b03392fc2f8707e7edb1b24d6289\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"14\",\"quote_id\":\"11\",\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"800.0000\",\"unit_price\":\"800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":null,\"real_unit_price\":\"800.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3467, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"10\",\"date\":\"2024-12-23 14:24:00\",\"reference_no\":\"QUOTE0009\",\"customer_id\":\"890\",\"customer\":\"Benson Mugweru\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"20000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"20000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ed1c384f25d79f38f6dca071b9b86cd7b418334f2295ffdb1053ae35e696021f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"13\",\"quote_id\":\"10\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3468, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"8\",\"date\":\"2024-12-23 13:46:00\",\"reference_no\":\"QUOTE0007\",\"customer_id\":\"813\",\"customer\":\"Zacchaeus\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"12000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"12000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"c31b22b3af66b878baf1f4626d4f6650a7851876c66e30acf30f990ab4b83527\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"10\",\"quote_id\":\"8\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3469, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"191\",\"date\":\"2024-12-13 09:09:00\",\"reference_no\":\"QUOTE0189\",\"customer_id\":\"1050\",\"customer\":\"Geoffrey Muchiri\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"7b2276ebc9f799118424949451b63ff41052a3af438687ed267a72d1f0f07695\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"233\",\"quote_id\":\"191\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3470, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"344\",\"date\":\"2024-12-12 09:46:00\",\"reference_no\":\"QUOTE0342\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"120000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"120000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-04 09:48:01\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"8af2c7d4ba1f4ec03d785df3b59d32b9dd610829e0ef202bb4b8e3417005fa42\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"403\",\"quote_id\":\"344\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"120.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120000.0000\",\"serial_no\":null,\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"120.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3471, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"189\",\"date\":\"2024-11-18 08:55:00\",\"reference_no\":\"QUOTE0187\",\"customer_id\":\"1049\",\"customer\":\"Muchiri Crucial\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"143025.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"143025.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-01-18 08:57:34\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"ffc7d2a372d762cab0268c1aadb5ef999b6c29570690718700a766d72a9162c7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"228\",\"quote_id\":\"189\",\"product_id\":\"1097\",\"product_code\":\"81885396\",\"product_name\":\"BIG ROCK\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"113.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"73775.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"113.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"229\",\"quote_id\":\"189\",\"product_id\":\"1100\",\"product_code\":\"14639397\",\"product_name\":\"svte 8444\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"57.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"37050.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"57.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"230\",\"quote_id\":\"189\",\"product_id\":\"1116\",\"product_code\":\"23850574\",\"product_name\":\"sweeet revelation\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"46.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"32200.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"46.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3472, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"39\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"QUOTE0038\",\"customer_id\":\"913\",\"customer\":\"Wilson Muriuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"80000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"4000.0000\",\"order_discount_id\":\"4000\",\"total_discount\":\"4000.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"pending\",\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2024-12-28 11:16:45\",\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"73e40b74c8dda84ef5a4df627bede9320f4cbc3c9243962270ee17fc3280c865\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"48\",\"quote_id\":\"39\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80000.0000\",\"serial_no\":null,\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 11:49:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3473, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"495\",\"date\":\"2025-02-07 12:30:00\",\"reference_no\":\"QUOTE0493\",\"customer_id\":\"1273\",\"customer\":\"Derrick Kangangi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2100.0000\",\"status\":\"pending\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"b1a97ca769d393d4f28c3d91978a5139fc83b95747846c094c2f9a7d3421aca4\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"573\",\"quote_id\":\"495\",\"product_id\":\"1137\",\"product_code\":\"16566701\",\"product_name\":\"s.bell propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2100.0000\",\"serial_no\":null,\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 12:31:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3474, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1667\",\"date\":\"2025-02-17 13:22:00\",\"reference_no\":\"SALE0773\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"7fe8d8146b463f3da3ac8db1e03a67c137b59a31f5df815f8c5227312f239712\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2902\",\"sale_id\":\"1667\",\"product_id\":\"1101\",\"product_code\":\"42441894\",\"product_name\":\"star 9065\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-18 13:23:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3475, 'Quotation is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"509\",\"date\":\"2025-02-14 13:22:00\",\"reference_no\":\"QUOTE0507\",\"customer_id\":\"1299\",\"customer\":\"Gatimu\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"pending\",\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"073eb36a0a355c117303aa8f9169c3f07f5776855084db24a61e43c2529a0ee7\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"589\",\"quote_id\":\"509\",\"product_id\":\"1115\",\"product_code\":\"18372909\",\"product_name\":\"ansal propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-18 13:24:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3476, 'Payment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1970\",\"date\":\"2025-02-18 15:28:00\",\"sale_id\":\"1668\",\"return_id\":null,\"purchase_id\":null,\"reference_no\":\"1031\",\"transaction_id\":null,\"paid_by\":\"cash\",\"cheque_no\":\"\",\"cc_no\":\"\",\"cc_holder\":\"\",\"cc_month\":\"\",\"cc_year\":\"\",\"cc_type\":\"Visa\",\"amount\":\"500.0000\",\"currency\":null,\"created_by\":\"3\",\"attachment\":null,\"type\":\"received\",\"note\":\"\",\"pos_paid\":\"0.0000\",\"pos_balance\":\"0.0000\",\"approval_code\":null}}', '2025-02-18 15:28:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3477, 'Payment is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1971\",\"date\":\"2025-02-18 15:28:00\",\"sale_id\":\"1668\",\"return_id\":null,\"purchase_id\":null,\"reference_no\":\"1032\",\"transaction_id\":null,\"paid_by\":\"bank\",\"cheque_no\":\"\",\"cc_no\":\"\",\"cc_holder\":\"\",\"cc_month\":\"\",\"cc_year\":\"\",\"cc_type\":\"Visa\",\"amount\":\"500.0000\",\"currency\":null,\"created_by\":\"3\",\"attachment\":null,\"type\":\"received\",\"note\":\"\",\"pos_paid\":\"0.0000\",\"pos_balance\":\"0.0000\",\"approval_code\":null}}', '2025-02-18 15:29:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3478, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1687\",\"date\":\"2025-02-18 15:39:00\",\"reference_no\":\"SALE0793\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"659090f718fed4cc911a9f6e7411e3c41934d050292c1dbd2872f81d8b7e9d90\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 15:40:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3479, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1686\",\"date\":\"2025-02-18 15:38:00\",\"reference_no\":\"SALE0792\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"2eb9e1542f91cba61d458de5e3049a104ef325aaba412fa43d83c083fb86579d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 15:40:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3480, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1685\",\"date\":\"2025-02-18 15:37:00\",\"reference_no\":\"SALE0791\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"756a81ffc9850efd26adceb7743988d1687ce8a9c7798bce756f11ba2f2ddeea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 15:40:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3481, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1684\",\"date\":\"2025-02-18 15:34:00\",\"reference_no\":\"SALE0790\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:36:03\",\"total_items\":\"10\",\"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\":\"b755693d76634bb7948c3c89f6ced13a20289e005569cbb48a92eddc5d22697a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2931\",\"sale_id\":\"1684\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 15:40:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3482, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1683\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0789\",\"customer_id\":\"1300\",\"customer\":\"allan mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"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\":\"f2e241f45bcbfbf7cd2094d1f770d5baf5c97dfc127fe21c1bceee8e384535f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 15:53:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3483, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1682\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0788\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"2000.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\":\"bb7d46ec6b5e5fa6413d899cb1b317086b4e310d575dfccd3e4d9d5c76380768\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 15:54:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3484, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1689\",\"date\":\"2025-02-04 15:55:00\",\"reference_no\":\"SALE0795\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"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\":\"c824a1695c092cbfea656039352a51d97792d6ed0eb2fc8e8088eb9ef7870556\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2992\",\"sale_id\":\"1689\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"3.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-18 15:56:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3485, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1666\",\"date\":\"2025-02-17 13:21:00\",\"reference_no\":\"SALE0772\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:40:43\",\"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\":\"f391987c7379b71e53520b89b1b4bb3498ab8a58e5d3202060ebfb2d3fc14158\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3486, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1665\",\"date\":\"2025-02-17 13:19:00\",\"reference_no\":\"SALE0771\",\"customer_id\":\"1298\",\"customer\":\"George wamwea\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1950.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1950.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:46:04\",\"total_items\":\"3\",\"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\":\"378059aa0caf7d67dc16016cd59517bb9ee6e186d5d6bcac80785f752b130178\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3487, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1668\",\"date\":\"2025-02-14 13:24:00\",\"reference_no\":\"SALE0774\",\"customer_id\":\"1299\",\"customer\":\"Gatimu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:46:16\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"800.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\":\"eca5d58241727af55cdae528f572f8fcd4ee0cb9fbdfd2d90ab68438557ea292\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3488, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1664\",\"date\":\"2025-02-14 13:17:00\",\"reference_no\":\"SALE0770\",\"customer_id\":\"1297\",\"customer\":\"Grace Wambui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1625.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1625.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:46:25\",\"total_items\":\"3\",\"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\":\"2417178260dcbd299810b2b7ce1bef7f82ace0de52ed1cf3a19d243f81f64f12\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3489, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1663\",\"date\":\"2025-02-14 13:15:00\",\"reference_no\":\"SALE0769\",\"customer_id\":\"1296\",\"customer\":\"David njeru cucumber\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:46:33\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1000.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\":\"49738196c21a6326826caac200cc8ab665a8cfe55d84c754f975617bf1610ac8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3490, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1660\",\"date\":\"2025-02-14 13:02:00\",\"reference_no\":\"SALE0766\",\"customer_id\":\"1264\",\"customer\":\"Simon Muchoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4550.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:46:55\",\"total_items\":\"7\",\"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\":\"139a2232fa4856d393dadf206ab5c8879805fb816287b97ceaaf9863ea774889\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3491, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1662\",\"date\":\"2025-02-13 13:07:00\",\"reference_no\":\"SALE0768\",\"customer_id\":\"1295\",\"customer\":\"mucogia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27625.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27625.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:47:11\",\"total_items\":\"43\",\"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\":\"d72387d821534d1aa9756c42ee181bbd3771837088310a5a26d547ca5eac585b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3492, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1661\",\"date\":\"2025-02-13 13:05:00\",\"reference_no\":\"SALE0767\",\"customer_id\":\"1294\",\"customer\":\"charles karangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:47:24\",\"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\":\"c67bba88381fb725ac7991ab480eb892a72880c0b920ce51a479588a1e22827a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3493, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1659\",\"date\":\"2025-02-12 12:56:00\",\"reference_no\":\"SALE0765\",\"customer_id\":\"1175\",\"customer\":\"zachary kithaka\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:47:32\",\"total_items\":\"44\",\"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\":\"c2486d39e2a73c151934ec7536ada2b4534e22dc81ceb3449c8aac1193ddf4e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3494, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1658\",\"date\":\"2025-02-12 12:55:00\",\"reference_no\":\"SALE0764\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:47:41\",\"total_items\":\"4\",\"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\":\"8a9ea749682a68f2e3815cd8e2c42cf38e5e86a0a461848ead314dd913588138\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3495, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1657\",\"date\":\"2025-02-10 12:51:00\",\"reference_no\":\"SALE0763\",\"customer_id\":\"1293\",\"customer\":\"eric wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17550.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17550.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:47:54\",\"total_items\":\"27\",\"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\":\"03e7e0d4588b20bc59a152bebd2ca9d839774f0682373e71063937cc779e88d5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3496, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1656\",\"date\":\"2025-02-10 12:48:00\",\"reference_no\":\"SALE0762\",\"customer_id\":\"1292\",\"customer\":\"Elijah maina\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7475.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7475.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:48:05\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"2500.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\":\"1a1f1ace1e62f89769b32d3a25d2d67f945ee1c75d35b9649171c783a2109b9a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3497, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1655\",\"date\":\"2025-02-10 12:45:00\",\"reference_no\":\"SALE0761\",\"customer_id\":\"1291\",\"customer\":\"John warui\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7475.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7475.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:48:18\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"2500.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\":\"62ab24c79cdb1cc88ffeee7e8418e017eb0d623c51913b00a15ee6ba6ed9c9cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3498, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1654\",\"date\":\"2025-02-07 12:33:00\",\"reference_no\":\"SALE0760\",\"customer_id\":\"1206\",\"customer\":\"Nicholas muthii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:48:25\",\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"3500.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\":\"d4b97c8d8d8bf1905ffeed6dec8ff14f0444f3e098baed9fa8c6cbf792d596ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3499, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1653\",\"date\":\"2025-02-07 12:31:00\",\"reference_no\":\"SALE0759\",\"customer_id\":\"1273\",\"customer\":\"Derrick Kangangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2100.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:48:47\",\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"1000.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\":\"6d137ada6eb48ee017d007ed37cb553c691c16485b81747436c46f162ca5a5eb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3500, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1691\",\"date\":\"2025-02-06 15:59:00\",\"reference_no\":\"SALE0797\",\"customer_id\":\"822\",\"customer\":\"John\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"15000.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\":\"847879b0c83f33c7fb69db8edd311d78b57043cdb8eef7fa7d9ee5ef467c5942\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3501, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1690\",\"date\":\"2025-02-06 15:58:00\",\"reference_no\":\"SALE0796\",\"customer_id\":\"1207\",\"customer\":\"Susan wanjiku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"2000.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\":\"fc2bb05317fd7ae13a0a91a0e6f1664afaa46fdb81f5116004740227ee68f06d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3502, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1681\",\"date\":\"2025-02-05 13:51:00\",\"reference_no\":\"SALE0787\",\"customer_id\":\"1205\",\"customer\":\"Peter muchiri\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:48:56\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"48c480a4b042755eba6ebf1a0a3e32b4f297c63cb16340bd16e1fbf5d02b1265\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3503, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1680\",\"date\":\"2025-02-05 13:50:00\",\"reference_no\":\"SALE0786\",\"customer_id\":\"1203\",\"customer\":\"Reubenson murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:49:08\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"3300.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\":\"3bfac802bdf0c539183f9d630d48f8b4ed1151a597fe507e02f4be72b2531398\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3504, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1679\",\"date\":\"2025-02-05 13:49:00\",\"reference_no\":\"SALE0785\",\"customer_id\":\"1033\",\"customer\":\"Francis njeru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:49:18\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"10000.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\":\"0ac920aa4da016d32d967a21c2b2c73a4df93a787c1c440743533283cbb766d3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3505, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1678\",\"date\":\"2025-02-05 13:47:00\",\"reference_no\":\"SALE0784\",\"customer_id\":\"909\",\"customer\":\"Charles Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:49:26\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"1950.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\":\"4d874e3af056d0300e5b584708c7f095f7696e39c976c61bd999d7a10910a079\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3506, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1677\",\"date\":\"2025-02-05 13:46:00\",\"reference_no\":\"SALE0783\",\"customer_id\":\"1200\",\"customer\":\"Alice wairiuko\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:49:36\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"c50483517fb262542f1212f4a7abb3a08d391d60c6b79d62d8a141c3deeaa48e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3507, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1676\",\"date\":\"2025-02-05 13:44:00\",\"reference_no\":\"SALE0782\",\"customer_id\":\"918\",\"customer\":\"Miringu\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"53800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"53800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:49:50\",\"total_items\":\"31\",\"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\":\"188dfb8f8fdd387031e7f39fe380c168e8d058377e29e98dd7bb0a3286123105\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3508, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1675\",\"date\":\"2025-02-05 13:42:00\",\"reference_no\":\"SALE0781\",\"customer_id\":\"1197\",\"customer\":\"Jeremian Mubena\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:50:01\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"d59f14516b3d772bbf9f3c023adaf27902d58cc1ea7ff920b54ff6f2c5724c91\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3509, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1674\",\"date\":\"2025-02-05 13:41:00\",\"reference_no\":\"SALE0780\",\"customer_id\":\"189\",\"customer\":\"jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:50:09\",\"total_items\":\"20\",\"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\":\"8d5a32858f8c5eed268df51306ce5eb94437ee9da4c52cb065f7f1e3fe4e5f81\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3510, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1688\",\"date\":\"2025-02-04 15:54:00\",\"reference_no\":\"SALE0794\",\"customer_id\":\"1300\",\"customer\":\"allan mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"32300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"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\":\"bbbba39178e5070c9c94491e5413d3613f0c5ebcf6ace69945596a461cad3c50\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3511, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1673\",\"date\":\"2025-02-04 13:40:00\",\"reference_no\":\"SALE0779\",\"customer_id\":\"1196\",\"customer\":\"Florence\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:50:17\",\"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\":\"e893e15700735402771c580ceffa1e8e5529e9a739b817e764c15e65e97a403f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3512, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1672\",\"date\":\"2025-02-04 13:40:00\",\"reference_no\":\"SALE0778\",\"customer_id\":\"1008\",\"customer\":\"beth\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:50:27\",\"total_items\":\"30\",\"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\":\"c119f447c9b1a90e26e88265b4386a09c7042006878bb77d07467cacc0512437\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3513, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1671\",\"date\":\"2025-02-04 13:38:00\",\"reference_no\":\"SALE0777\",\"customer_id\":\"821\",\"customer\":\"Jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 15:45:54\",\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"7000.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\":\"c209a1c63cae2090774b5fcaf0bed766811477c7188e111a8a42311b5c07708e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3514, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1670\",\"date\":\"2025-02-04 13:36:00\",\"reference_no\":\"SALE0776\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 13:37:54\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"68ece16ba2e5c3682ea7b204ca1959ae58a4f89726176269965c310dc00b6dee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3515, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1669\",\"date\":\"2025-02-04 13:34:00\",\"reference_no\":\"SALE0775\",\"customer_id\":\"1189\",\"customer\":\"joseph murathii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"2300.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\":\"feffefd16907721e3bc5c4738722912d632c055a46111f39935632f015294e75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3516, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1652\",\"date\":\"2025-02-04 12:16:00\",\"reference_no\":\"SALE0758\",\"customer_id\":\"288\",\"customer\":\"Joseph mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"142500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"142500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"75\",\"pos\":\"0\",\"paid\":\"10000.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\":\"be4f7eef49af9c88c15615fce7a9cdc49243c4af48f87812a1a60d9e8ca14102\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3517, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1651\",\"date\":\"2025-02-04 12:14:00\",\"reference_no\":\"SALE0757\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 12:15:23\",\"total_items\":\"15\",\"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\":\"f80af4a96b4087ce348cae559637cf4f426eafa9826a1e4c56b94bb976f8a7a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3518, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1650\",\"date\":\"2025-02-04 12:13:00\",\"reference_no\":\"SALE0756\",\"customer_id\":\"461\",\"customer\":\"Isaac  Mungai\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"150000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"150000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 12:15:12\",\"total_items\":\"150\",\"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\":\"999eb9971524483016518f6d860198adba8d7bf19e07e3843a701fa8757d2eb7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3519, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1649\",\"date\":\"2025-02-04 12:10:00\",\"reference_no\":\"SALE0755\",\"customer_id\":\"1187\",\"customer\":\"james munenr\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"4500.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\":\"4a9cb53ae5c457763ca98d30d1dd160c9ddd991c932fa8052673116fcf3f94dc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3520, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1648\",\"date\":\"2025-02-03 12:06:00\",\"reference_no\":\"SALE0754\",\"customer_id\":\"1272\",\"customer\":\"Richard Hoho\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;to be coolected after 28 days&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"2925.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2925.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"1500.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\":\"4474653ad5f8e68cb9c3b248677f02d5f9da6871e17e0a6abad5772ba9c7a7e1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3521, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1647\",\"date\":\"2025-02-03 12:03:00\",\"reference_no\":\"SALE0753\",\"customer_id\":\"1185\",\"customer\":\"SIMON MUTHIKE\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;to be collected after 21 days&nbsp;&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"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\":\"a053ad3ade0dee4ab30c76d7dc6dc561a90c48bc519e32c3156085a771b7b925\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3522, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1646\",\"date\":\"2025-02-01 12:00:00\",\"reference_no\":\"SALE0752\",\"customer_id\":\"1271\",\"customer\":\"Mary Mugo\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;to be collected after 45 days&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"13650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13650.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"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\":\"096c6386182dfac3394ae630b1c75b9fd24fa237930d1bacb6de89a92ddaf725\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3523, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1645\",\"date\":\"2025-02-01 11:58:00\",\"reference_no\":\"SALE0751\",\"customer_id\":\"1270\",\"customer\":\"Jane Wanjiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"&lt;p&gt;to be collected after 21 days&lt;&sol;p&gt;\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 11:59:55\",\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"500.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\":\"96bf501baa0824c64a6fb401cc80f81255bba4fb064ebdf96cc81ba35055c82b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:02:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3524, 'Sale is being deleted by kimems (User Id: 3)', '{\"model\":{\"id\":\"1692\",\"date\":\"2025-02-18 16:03:00\",\"reference_no\":\"SALE0798\",\"customer_id\":\"465\",\"customer\":\"Mwaii\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"815e22944bf7cb14018cfb08df9fd170ae83599d47517821177cad012e842fd1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 16:09:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3525, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1723\",\"date\":\"2025-01-28 17:30:00\",\"reference_no\":\"SALE0826\",\"customer_id\":\"1118\",\"customer\":\"Julius Kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"2500.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\":\"a842f9f063f5ba9a913c42b5ef8a477b415684f298147969f19628520712dd0d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-18 17:31:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3526, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"511\",\"date\":\"2025-01-23 17:56:00\",\"reference_no\":\"QUOTE0509\",\"customer_id\":\"1155\",\"customer\":\"Duncan Kariuki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"eeaf059c087a56398af31ac2917e42fb68be0d31c314393c3945fac722979c66\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"592\",\"quote_id\":\"511\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-19 12:37:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3527, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1784\",\"date\":\"2024-12-17 17:05:00\",\"reference_no\":\"SALE0887\",\"customer_id\":\"1313\",\"customer\":\"kaminja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-19 17:23:33\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"3900.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\":\"0f6b87eb5369519dd7a46320b996ed4d409fa0bbeae712f3f29aedc10d32a440\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3106\",\"sale_id\":\"1784\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":\"0\",\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-20 09:32:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3528, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1760\",\"date\":\"2025-01-24 12:29:00\",\"reference_no\":\"SALE0863\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5525.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5525.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-24 16:00:48\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5000.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\":\"3a07bfdec4f35d4ec758b741d1057c67a35cd5a564caafc92766bb8a1290a53b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3209\",\"sale_id\":\"1760\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"8.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5525.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"8.5000\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-24 16:01:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3529, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"519\",\"date\":\"2025-01-24 12:27:00\",\"reference_no\":\"QUOTE0517\",\"customer_id\":\"1262\",\"customer\":\"James Gachoki\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"4875.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4875.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"4daf07c73b85b7faf3c7295b0a50b58b9a30039e9812401be6306481dabccb91\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"600\",\"quote_id\":\"519\",\"product_id\":\"1128\",\"product_code\":\"00367070\",\"product_name\":\"commando propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"7.5000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4875.0000\",\"serial_no\":null,\"real_unit_price\":\"650.0000\",\"product_unit_id\":\"0\",\"product_unit_code\":null,\"unit_quantity\":\"7.5000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-02-24 16:09:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3530, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1693\",\"date\":\"2025-02-04 16:03:00\",\"reference_no\":\"SALE0799\",\"customer_id\":\"1153\",\"customer\":\"Wycliff\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"34200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-25 16:47:31\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"4000.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\":\"a13ef8014416f9d65bb8ef7c99a557a62321cbcc969e69b0a608bd3859dbbc33\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-02-25 16:47:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3531, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1951\",\"date\":\"2025-02-26 16:10:00\",\"reference_no\":\"SALE1041\",\"customer_id\":\"1004\",\"customer\":\"milton wachira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"8f624091b8e5171d6ff75b83fa02984f61395b821b3b611f86605266ddf8ff0f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3335\",\"sale_id\":\"1951\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-26 16:16:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3532, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1952\",\"date\":\"2025-02-26 16:11:00\",\"reference_no\":\"SALE1042\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"513.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"7\",\"total_discount\":\"7.0000\",\"order_discount\":\"7.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"506.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"506.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\":\"838c175851e3ce538f6af7035fe0d7fc09fb6bca664fdf212cbd6051e2d94cd2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3336\",\"sale_id\":\"1952\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"0.2670\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"513.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.2700\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-26 16:16:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3533, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1961\",\"date\":\"2025-02-26 16:47:00\",\"reference_no\":\"SALE1051\",\"customer_id\":\"1115\",\"customer\":\"anthony matere\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-26 16:47:59\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"eca56aed72c961b4c01d1d16d0a1b692f2080edcc16713ca72bbb510cea463ec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3347\",\"sale_id\":\"1961\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-02-26 16:48:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3534, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1982\",\"date\":\"2025-01-29 16:04:00\",\"reference_no\":\"SALE1070\",\"customer_id\":\"341\",\"customer\":\"Joel  Kihohia\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"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\":\"866eaf7654d6aa5d323c440513d31725f2506a8eeb61d49dd78d146983e9a5cd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3373\",\"sale_id\":\"1982\",\"product_id\":\"1130\",\"product_code\":\"59903299\",\"product_name\":\"terminator propagation\",\"product_type\":\"service\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"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\":null,\"second_name\":\"\",\"base_unit_id\":null,\"base_unit_code\":null}]}', '2025-02-27 16:06:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3535, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":false,\"items\":null}', '2025-02-27 16:06:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3536, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"541\",\"date\":\"2025-02-27 15:17:00\",\"reference_no\":\"QUOTE0539\",\"customer_id\":\"1346\",\"customer\":\"Raphael Muriithi\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"1300.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"84a177a113e1a7d101d8d216a221b6315372d2278a59b850501388dfcedea6a8\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"627\",\"quote_id\":\"541\",\"product_id\":\"982\",\"product_code\":\"15944529\",\"product_name\":\"kibostar\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1300.0000\",\"unit_price\":\"1300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1300.0000\",\"serial_no\":null,\"real_unit_price\":\"1300.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-03-02 12:25:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3537, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"540\",\"date\":\"2025-02-27 15:12:00\",\"reference_no\":\"QUOTE0538\",\"customer_id\":\"1345\",\"customer\":\"George Nzomo\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"76000.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"76000.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"a448e682be55ea96743f8489ea93045ae31c065f52a8fac0d3cb1791eb4cf82a\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"626\",\"quote_id\":\"540\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"76000.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-03-02 12:25:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3538, 'Quotation is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"539\",\"date\":\"2025-02-27 15:06:00\",\"reference_no\":\"QUOTE0537\",\"customer_id\":\"209\",\"customer\":\"George kibicho\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"note\":\"\",\"internal_note\":null,\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"status\":\"completed\",\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"751a6f79d768d007ba7a3348c690d7b0a4adb30d9afafa43a6df7504ae1be94f\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"625\",\"quote_id\":\"539\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":null,\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"unit\":\"5\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\"}]}', '2025-03-02 12:25:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3539, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1814\",\"date\":\"2025-02-11 13:03:00\",\"reference_no\":\"SALE0917\",\"customer_id\":\"1240\",\"customer\":\"Jacob Nyaga\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-03-04 08:48:13\",\"total_items\":\"15\",\"pos\":\"0\",\"paid\":\"9900.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\":\"f1f9a14fbbc8b39172713d0e62ea724b618de33aab300f5780a5d6a408de0cc3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-04 09:03:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3540, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1940\",\"date\":\"2025-02-12 10:38:00\",\"reference_no\":\"SALE1030\",\"customer_id\":\"1231\",\"customer\":\"Samuel Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4200.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\":\"769937a15a487afe73f657cac81ac2a4a686a23aac3484d3f72da6de0f686779\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-04 09:13:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3541, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1939\",\"date\":\"2025-02-10 09:58:00\",\"reference_no\":\"SALE1029\",\"customer_id\":\"1231\",\"customer\":\"Samuel Njiru\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5700.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"0\",\"paid\":\"4000.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\":\"fa99854970c2a3d5c39f9ef786c8c95e714d9a78efff34c149d1ce9db38aa06b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-04 09:13:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3542, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2070\",\"date\":\"2025-03-04 08:31:00\",\"reference_no\":\"SALE1156\",\"customer_id\":\"1301\",\"customer\":\"Josphat mutahi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-03-06 08:56:34\",\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1900.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\":\"332820a4bcbca86721c478bb285110f34ef6d23f63da18ea42b2ddb73105af9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-06 08:56:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3543, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1995\",\"date\":\"2025-02-28 16:18:00\",\"reference_no\":\"SALE1083\",\"customer_id\":\"1355\",\"customer\":\"Douglas kariuki\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-03-06 09:27:41\",\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"10000.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\":\"54ebce3bd92b553b5f77a8fe9d54a8551a75b6feca9db08d7981a2c7cca43a45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-06 09:28:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3544, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2027\",\"date\":\"2025-02-14 13:38:00\",\"reference_no\":\"SALE1115\",\"customer_id\":\"1285\",\"customer\":\"Eliud Musyimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"99261e502b44943ead40f0f5b2d6cd65ec63e2e5dd8e0e9f4751aadb9680be77\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-06 20:16:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3545, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1709\",\"date\":\"2025-02-18 17:08:00\",\"reference_no\":\"SALE0815\",\"customer_id\":\"1151\",\"customer\":\"Anthony Gichira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"26600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-02-21 16:46:11\",\"total_items\":\"14\",\"pos\":\"0\",\"paid\":\"11000.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\":\"ca6d0fb1f05c0e09f315a165633b01893a400083b41ca510aa67647a4b39226d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-06 20:59:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3546, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2090\",\"date\":\"2025-02-18 21:01:00\",\"reference_no\":\"SALE1176\",\"customer_id\":\"1184\",\"customer\":\"john maria\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"0\",\"paid\":\"8000.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\":\"da6639ea9f29d03c0b36216f9eb60a749dfad4e4df5c6c2cefc58940c0e664fd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-06 21:02:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3547, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2017\",\"date\":\"2025-02-13 13:24:00\",\"reference_no\":\"SALE1105\",\"customer_id\":\"907\",\"customer\":\"Ambrose Bundi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"114000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"60\",\"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\":\"25d6e68a51d7ee38f72aaf1d8ca0ef24a769fec7a52f47c45460da94928a8d90\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-07 17:00:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3548, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1783\",\"date\":\"2025-02-19 16:55:00\",\"reference_no\":\"SALE0886\",\"customer_id\":\"1312\",\"customer\":\"Johnson kinyua\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"7600.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\":\"b4428c5aa01c6af8cecd3c46d034ce3bb466306c9d73469c52838f366a1ab460\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-11 10:59:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3549, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2118\",\"date\":\"2025-03-10 10:29:00\",\"reference_no\":\"SALE1204\",\"customer_id\":\"1380\",\"customer\":\"Douglas kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"500\",\"total_discount\":\"500.0000\",\"order_discount\":\"500.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-03-11 11:04:50\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"5000.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\":\"99375368165aff2361e230dfd0d030f40561e11134cee8660704879332083ae7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3613\",\"sale_id\":\"2118\",\"product_id\":\"1094\",\"product_code\":\"14007806\",\"product_name\":\"s.bell\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-03-11 11:05:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3550, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2076\",\"date\":\"2025-02-28 09:28:00\",\"reference_no\":\"SALE1162\",\"customer_id\":\"1380\",\"customer\":\"Douglas kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"38000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"20\",\"pos\":\"0\",\"paid\":\"25000.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\":\"ee85002b93e65d169896a0a4a3c67b777a3cd77111bccc31057db9cd4377d80a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-11 11:05:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3551, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2173\",\"date\":\"2025-03-14 11:10:00\",\"reference_no\":\"SALE1259\",\"customer_id\":\"1431\",\"customer\":\"rosebelt wawira\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"42.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"42.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":\"13\",\"updated_at\":\"2025-03-18 11:14:10\",\"total_items\":\"0\",\"pos\":\"0\",\"paid\":\"39.9000\",\"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\":\"ac9f8b42e39c97f9cc1c7a468a2a8cb201cf9c3ef4fa408a2d91089a322c6efa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3719\",\"sale_id\":\"2173\",\"product_id\":\"1038\",\"product_code\":\"13422071\",\"product_name\":\"sukuma\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"0.0560\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"42.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"0.0600\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-03-18 11:14:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3552, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"75\",\"reference_no\":\"PO0067\",\"date\":\"0000-00-00 00:00:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"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\":\"715\",\"purchase_id\":\"75\",\"transfer_id\":null,\"product_id\":\"1047\",\"product_code\":\"06736723\",\"product_name\":\"Queen f1 seedlings\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"1970-01-01\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-03-19 08:37:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3553, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2262\",\"date\":\"2025-03-07 13:06:00\",\"reference_no\":\"SALE1348\",\"customer_id\":\"1159\",\"customer\":\"Anthhony murimi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1000.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\":\"1a53d5beeead5281bb217cae2cffbca22ebb78d635ad22e7e44458c78faa051f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3864\",\"sale_id\":\"2262\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-03-27 13:08:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3554, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1786\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE0889\",\"customer_id\":\"1313\",\"customer\":\"kaminja\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"4200.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\":\"ef093149e98ea12dfe9772f2404a69b6a8e51ca85b3c4539ea9bebcaa58c4cdf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-27 13:08:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3555, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2264\",\"date\":\"2025-02-08 20:51:00\",\"reference_no\":\"SALE1350\",\"customer_id\":\"1221\",\"customer\":\"Margret Kamau\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"5000.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\":\"c03628e8b2ae5fcb5d8a2ecd1b50ef828054cb7411ec33d2964514a43c6723bb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-03-27 20:53:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3556, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"118\",\"reference_no\":\"PO0110\",\"date\":\"2025-03-03 08:15:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"767\",\"purchase_id\":\"118\",\"transfer_id\":null,\"product_id\":\"1031\",\"product_code\":\"17799852\",\"product_name\":\"terminator\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"29.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-03-03\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"29.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"29.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-04-03 10:38:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3557, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"117\",\"reference_no\":\"PO0109\",\"date\":\"2025-03-03 08:14:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"766\",\"purchase_id\":\"117\",\"transfer_id\":null,\"product_id\":\"961\",\"product_code\":\"11720628\",\"product_name\":\"royal 705\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-03-03\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"30.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-04-03 10:38:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3558, 'Purchase is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"108\",\"reference_no\":\"PO0100\",\"date\":\"2025-02-03 12:06:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"13\",\"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\":\"755\",\"purchase_id\":\"108\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"117.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-02-03\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"117.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"117.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-04-03 10:41:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3559, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1703\",\"date\":\"2025-02-05 16:24:00\",\"reference_no\":\"SALE0809\",\"customer_id\":\"1197\",\"customer\":\"Jeremian Mubena\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2025-02-18 16:26:12\",\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"30ba24967d08398e3a1397919b6a23b7ff95c1c99472369a7ad8107c6fbb9beb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-04-03 14:49:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3560, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2347\",\"date\":\"2025-02-05 14:48:00\",\"reference_no\":\"SALE1433\",\"customer_id\":\"1197\",\"customer\":\"Jeremian Mubena\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"3000.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\":\"8ef3c05cca75367ffb9e561a2ade91f72a3fac18743ab523f043eb1e49c290d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4020\",\"sale_id\":\"2347\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-03 14:49:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3561, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1941\",\"date\":\"0000-00-00 00:00:00\",\"reference_no\":\"SALE1031\",\"customer_id\":\"1204\",\"customer\":\"Ephraim Mwangi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2600.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2600.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\":\"30fa5b702eb285405dde718c38ac2a95f9731dbc4d22eff49596f83f4b8e6771\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-04-03 14:58:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3562, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2353\",\"date\":\"2025-02-04 15:11:00\",\"reference_no\":\"SALE1439\",\"customer_id\":\"821\",\"customer\":\"Jamleck\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"13300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"0\",\"paid\":\"7000.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\":\"2d31d91b18ca39c5bb0764508d649bbbd15140a01098e1f837af657b8bed7656\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4035\",\"sale_id\":\"2353\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"7.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-03 15:12:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3563, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"1698\",\"date\":\"2025-02-04 16:19:00\",\"reference_no\":\"SALE0804\",\"customer_id\":\"1091\",\"customer\":\"james dedan\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"2000.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\":\"eefe5e8f7975dbb80bafdcd3b6508975371cdea3a26dbb9458e434b8bb3ce198\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-04-03 15:30:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3564, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2371\",\"date\":\"2025-01-27 09:25:00\",\"reference_no\":\"SALE1457\",\"customer_id\":\"627\",\"customer\":\"patrick muthike\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"16000.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\":\"348a7512c9328b7b2e0347dd838caeb1abfa962fbeacb808fac186c9a4094130\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4066\",\"sale_id\":\"2371\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-04 09:26:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3565, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2373\",\"date\":\"2025-02-25 10:09:00\",\"reference_no\":\"SALE1459\",\"customer_id\":\"1142\",\"customer\":\"Alfred Chomba\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"17100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"15000.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\":\"05012716e8c74368efd2482751c5e1e4650e6a5d982f0e20d6ddec92f5e31d7d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4079\",\"sale_id\":\"2373\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"9.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-04 10:13:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3566, 'Sale is being deleted by phinah (User Id: 13)', '{\"model\":{\"id\":\"2175\",\"date\":\"2025-03-14 11:17:00\",\"reference_no\":\"SALE1261\",\"customer_id\":\"180\",\"customer\":\"Daniel shikuku\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"57000.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"13\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"30\",\"pos\":\"0\",\"paid\":\"5000.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\":\"37fde5a225fccac42017b4a35d48138ffb08b222e6d2b7076e8fe28b879d69d4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2025-04-04 11:56:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3567, 'Sale is being deleted by sagana001 (User Id: 14)', '{\"model\":{\"id\":\"2388\",\"date\":\"2025-04-04 15:23:00\",\"reference_no\":\"20240404\",\"customer_id\":\"120\",\"customer\":\"Cyrus Muriithi\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"14\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"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\":\"e0a26c83623c5ae101c997b4a5e01ee981f580a2e2852acfe1b398f2f4f3dc12\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4099\",\"sale_id\":\"2388\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"10.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-04 15:26:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3568, 'Sale is being deleted by sagana001 (User Id: 14)', '{\"model\":{\"id\":\"2389\",\"date\":\"2025-04-04 15:23:00\",\"reference_no\":\"20240404\",\"customer_id\":\"140\",\"customer\":\"Peter karani\",\"biller_id\":\"3\",\"biller\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"28500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"14\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"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\":\"d0c78b45dadd3d9b2b730392d153accd7180f94ce08f0d42273df788a501a8ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4100\",\"sale_id\":\"2389\",\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"15.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"28500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"15.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\":null,\"second_name\":\"\",\"base_unit_id\":\"5\",\"base_unit_code\":\"Try\"}]}', '2025-04-04 15:26:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3569, 'Purchase is being deleted by sagana001 (User Id: 14)', '{\"model\":{\"id\":\"147\",\"reference_no\":\"20240404\",\"date\":\"2025-04-04 15:21:00\",\"supplier_id\":\"882\",\"supplier\":\"Sagana Plantraisers\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"14\",\"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\":\"823\",\"purchase_id\":\"147\",\"transfer_id\":null,\"product_id\":\"976\",\"product_code\":\"13561891\",\"product_name\":\"ansal\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"quantity\":\"100.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2025-04-04\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"100.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"5\",\"product_unit_code\":\"Try\",\"unit_quantity\":\"100.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"}]}', '2025-04-04 15:26:55');


#
# TABLE STRUCTURE FOR: sma_migrations
#

DROP TABLE IF EXISTS `sma_migrations`;

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

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


#
# TABLE STRUCTURE FOR: sma_notifications
#

DROP TABLE IF EXISTS `sma_notifications`;

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

#
# TABLE STRUCTURE FOR: sma_order_ref
#

DROP TABLE IF EXISTS `sma_order_ref`;

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

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', 1474, 552, 139, 1, 112, 12, 2033, 2, 1, 23, 15, 46);


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

#
# TABLE STRUCTURE FOR: sma_payments
#

DROP TABLE IF EXISTS `sma_payments`;

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

INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1976, '2025-02-04 16:09:00', 1694, NULL, NULL, '1037', NULL, 'cash', '', '', '', '', '', 'Visa', '3500.0000', NULL, 3, 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 (1977, '2025-02-04 16:14:00', 1695, NULL, NULL, '1038', NULL, 'bank', '', '', '', '', '', 'Visa', '30400.0000', NULL, 3, 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 (1978, '2025-02-04 16:16:00', 1696, NULL, NULL, '1039', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 3, 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 (1979, '2025-02-04 16:18:00', 1697, NULL, NULL, '1040', NULL, 'cash', '', '', '', '', '', 'Visa', '1200.0000', NULL, 3, 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 (1980, '2025-02-04 16:19:00', 1697, NULL, NULL, '1041', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 3, 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 (1982, '2025-02-04 16:20:00', 1699, NULL, NULL, '1043', NULL, 'cash', '', '', '', '', '', 'Visa', '7000.0000', NULL, 3, 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 (1984, '2025-02-05 16:26:00', 1704, NULL, NULL, '1045', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 3, 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 (1985, '2025-02-18 17:05:00', 1707, NULL, NULL, '1046', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (1986, '2025-02-18 17:06:00', 1708, NULL, NULL, '1047', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (1988, '2025-02-18 17:11:00', 1710, NULL, NULL, '1049', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (1989, '2025-02-18 17:15:00', 1715, NULL, NULL, '1050', NULL, 'cash', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (1990, '2025-02-18 17:17:00', 1717, NULL, NULL, '1051', NULL, 'cash', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (1991, '2025-02-18 17:19:00', 1718, NULL, NULL, '1052', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (1992, '2025-02-18 17:19:00', 1719, NULL, NULL, '1053', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (1993, '2025-02-06 17:21:00', 1720, NULL, NULL, '1054', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (1994, '2025-02-18 17:22:00', 1720, NULL, NULL, '1055', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (1995, '2025-01-28 17:23:00', 1721, NULL, NULL, '1056', NULL, 'bank', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (1996, '2025-02-18 17:25:00', 1721, NULL, NULL, '1057', NULL, 'cash', '', '', '', '', '', 'Visa', '1250.0000', NULL, 13, 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 (1997, '0000-00-00 00:00:00', 1722, NULL, NULL, '1058', NULL, 'bank', '', '', '', '', '', 'Visa', '33000.0000', NULL, 13, 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 (1998, '2025-02-18 17:27:00', 1722, NULL, NULL, '1059', NULL, 'bank', '', '', '', '', '', 'Visa', '1100.0000', NULL, 13, 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 (1999, '2025-02-18 17:28:00', 1722, NULL, NULL, '1060', NULL, 'cash', '', '', '', '', '', 'Visa', '5800.0000', NULL, 13, 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 (2001, '2025-01-28 17:31:00', 1724, NULL, NULL, '1062', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2002, '2025-02-18 17:34:00', 1724, NULL, NULL, '1063', NULL, 'cash', '', '', '', '', '', 'Visa', '7500.0000', NULL, 13, 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 (2003, '2025-01-24 17:36:00', 1725, NULL, NULL, '1064', NULL, 'bank', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2004, '2025-02-18 17:37:00', 1725, NULL, NULL, '1065', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2005, '2025-02-18 17:37:00', 1726, NULL, NULL, '1066', NULL, 'bank', '', '', '', '', '', 'Visa', '40000.0000', NULL, 13, 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 (2006, '2025-01-20 17:39:00', 1727, NULL, NULL, '1067', NULL, 'bank', '', '', '', '', '', 'Visa', '140000.0000', NULL, 13, 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 (2007, '2025-02-18 17:41:00', 1727, NULL, NULL, '1068', NULL, 'bank', '', '', '', '', '', 'Visa', '31000.0000', NULL, 13, 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 (2008, '2025-02-18 17:41:00', 1728, NULL, NULL, '1069', NULL, 'bank', '', '', '', '', '', 'Visa', '2250.0000', NULL, 13, 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 (2009, '2025-02-03 17:46:00', 1729, NULL, NULL, '1070', NULL, 'bank', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2010, '2025-02-18 17:47:00', 1729, NULL, NULL, '1071', NULL, 'bank', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2011, '2025-01-23 17:49:00', 1730, NULL, NULL, '1072', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2012, '2025-02-18 17:50:00', 1730, NULL, NULL, '1073', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2013, '2025-01-22 17:52:00', 1731, NULL, NULL, '1074', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2014, '2025-02-18 17:53:00', 1731, NULL, NULL, '1075', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '16600.0000', NULL, 13, 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 (2015, '2025-02-18 17:54:00', 1732, NULL, NULL, '1076', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2016, '2025-01-23 17:57:00', 1733, NULL, NULL, '1077', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2017, '2025-02-18 17:57:00', 1733, NULL, NULL, '1078', NULL, 'bank', '', '', '', '', '', 'Visa', '2300.0000', NULL, 13, 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 (2018, '2025-02-18 17:58:00', 1734, NULL, NULL, '1079', NULL, 'cash', '', '', '', '', '', 'Visa', '24000.0000', NULL, 13, 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 (2019, '2025-01-21 18:00:00', 1735, NULL, NULL, '1080', NULL, 'cash', '', '', '', '', '', 'Visa', '8700.0000', NULL, 13, 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 (2020, '2025-02-18 18:04:00', 1735, NULL, NULL, '1081', NULL, 'cash', '', '', '', '', '', 'Visa', '16000.0000', NULL, 13, 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 (2021, '2025-02-17 08:37:00', 1738, NULL, NULL, '1082', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2022, '2025-02-14 08:39:00', 1740, NULL, NULL, '1083', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2023, '2025-02-03 09:04:00', 1746, NULL, NULL, '1084', NULL, 'cash', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2024, '2025-02-07 09:05:00', 1747, NULL, NULL, '1085', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2025, '2025-02-10 09:07:00', 1749, NULL, NULL, '1086', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2026, '2025-02-10 09:08:00', 1750, NULL, NULL, '1087', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2027, '2025-01-21 09:20:00', 1755, NULL, NULL, '1088', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2028, '2025-01-23 09:28:00', 1758, NULL, NULL, '1089', NULL, 'cash', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2030, '2025-01-24 12:31:00', 1761, NULL, NULL, '1091', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2031, '2025-02-19 12:35:00', 1761, NULL, NULL, '1092', NULL, 'cash', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2032, '2025-01-28 12:46:00', 1765, NULL, NULL, '1093', NULL, 'bank', '', '', '', '', '', 'Visa', '975.0000', NULL, 13, 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 (2033, '2025-01-29 12:48:00', 1766, NULL, NULL, '1094', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2034, '2025-02-19 14:42:00', 1755, NULL, NULL, '1095', NULL, 'cash', '', '', '', '', '', 'Visa', '2250.0000', NULL, 13, 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 (2035, '2025-02-19 14:43:00', 1769, NULL, NULL, '1096', NULL, 'cash', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2036, '2025-02-19 14:46:00', 1770, NULL, NULL, '1097', NULL, 'cash', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2037, '2025-02-19 16:12:00', 1772, NULL, NULL, '1098', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2038, '2025-02-19 16:16:00', 1773, NULL, NULL, '1099', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2039, '2025-02-19 16:27:00', 1774, NULL, NULL, '1100', NULL, 'bank', '', '', '', '', '', 'Visa', '2300.0000', NULL, 13, 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 (2040, '2025-02-19 16:30:00', 1775, NULL, NULL, '1101', NULL, 'cash', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2041, '2025-02-19 16:31:00', 1776, NULL, NULL, '1102', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2042, '2025-02-19 16:32:00', 1777, NULL, NULL, '1103', NULL, 'bank', '', '', '', '', '', 'Visa', '14300.0000', NULL, 13, 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 (2043, '2025-01-25 16:34:00', 1778, NULL, NULL, '1104', NULL, 'bank', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2044, '2025-02-19 16:36:00', 1778, NULL, NULL, '1105', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '64000.0000', NULL, 13, 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 (2045, '2025-02-19 16:40:00', 1780, NULL, NULL, '1106', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2046, '2025-02-19 16:41:00', 1781, NULL, NULL, '1107', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2047, '2025-02-19 16:47:00', 1782, NULL, NULL, '1108', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2049, '2025-02-19 17:00:00', 1759, NULL, NULL, '1110', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2052, '2025-02-10 17:16:00', 1785, NULL, NULL, '1113', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2053, '2025-02-19 17:17:00', 1785, NULL, NULL, '1114', NULL, 'cash', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2054, '2025-02-19 17:18:00', 1779, NULL, NULL, '1115', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2057, '2025-01-29 09:39:00', 1787, NULL, NULL, '1118', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2058, '2025-02-19 09:40:00', 1787, NULL, NULL, '1119', NULL, 'cash', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2059, '2025-01-30 11:15:00', 1789, NULL, NULL, '1120', NULL, 'cash', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2060, '2025-02-20 11:20:00', 1790, NULL, NULL, '1121', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2061, '2025-02-06 12:16:00', 1793, NULL, NULL, '1122', NULL, 'bank', '', '', '', '', '', 'Visa', '2200.0000', NULL, 13, 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 (2062, '2025-02-06 12:17:00', 1794, NULL, NULL, '1123', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2063, '2025-02-06 12:20:00', 1795, NULL, NULL, '1124', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2064, '2025-02-07 12:22:00', 1796, NULL, NULL, '1125', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2065, '2025-02-07 12:28:00', 1797, NULL, NULL, '1126', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2066, '2025-02-07 12:32:00', 1799, NULL, NULL, '1127', NULL, 'bank', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2067, '2025-02-07 12:34:00', 1800, NULL, NULL, '1128', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2068, '2025-02-07 12:35:00', 1801, NULL, NULL, '1129', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2069, '2025-02-07 12:45:00', 1802, NULL, NULL, '1130', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2070, '2025-02-08 12:46:00', 1803, NULL, NULL, '1131', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2071, '2025-02-10 12:48:00', 1804, NULL, NULL, '1132', NULL, 'cash', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2072, '2025-02-10 12:49:00', 1805, NULL, NULL, '1133', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2073, '2025-02-10 12:53:00', 1806, NULL, NULL, '1134', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2074, '2025-02-10 12:55:00', 1807, NULL, NULL, '1135', NULL, 'bank', '', '', '', '', '', 'Visa', '4200.0000', NULL, 13, 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 (2075, '2025-02-10 12:57:00', 1809, NULL, NULL, '1136', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2076, '2025-02-10 12:59:00', 1810, NULL, NULL, '1137', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2077, '2025-02-20 13:00:00', 1810, NULL, NULL, '1138', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2078, '2025-02-10 13:00:00', 1811, NULL, NULL, '1139', NULL, 'bank', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2079, '2025-02-10 13:01:00', 1812, NULL, NULL, '1140', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2080, '2025-02-11 13:02:00', 1813, NULL, NULL, '1141', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2082, '2025-02-11 13:04:00', 1815, NULL, NULL, '1143', NULL, 'cash', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2083, '2025-02-20 16:37:00', 1816, NULL, NULL, '1144', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '70000.0000', NULL, 13, 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 (2084, '2025-02-20 16:38:00', 1758, NULL, NULL, '1145', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2085, '2025-02-20 16:39:00', 1817, NULL, NULL, '1146', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2086, '2025-02-20 16:40:00', 1818, NULL, NULL, '1147', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2087, '2025-02-20 16:42:00', 1819, NULL, NULL, '1148', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2088, '2025-02-20 16:45:00', 1820, NULL, NULL, '1149', NULL, 'cash', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2089, '2025-02-20 16:46:00', 1821, NULL, NULL, '1150', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2090, '2025-02-20 16:48:00', 1822, NULL, NULL, '1151', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2091, '2025-01-29 16:49:00', 1823, NULL, NULL, '1152', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2092, '2025-02-20 16:56:00', 1823, NULL, NULL, '1153', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1700.0000', NULL, 13, 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 (2093, '2025-02-20 17:02:00', 1824, NULL, NULL, '1154', NULL, 'bank', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2094, '2025-02-20 17:03:00', 1825, NULL, NULL, '1155', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2095, '2025-02-20 17:04:00', 1825, NULL, NULL, '1156', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2096, '2025-01-29 17:11:00', 1826, NULL, NULL, '1157', NULL, 'bank', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2097, '2025-02-20 17:12:00', 1826, NULL, NULL, '1158', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2098, '2025-01-23 17:14:00', 1827, NULL, NULL, '1159', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2099, '2025-02-20 17:19:00', 1827, NULL, NULL, '1160', NULL, 'bank', '', '', '', '', '', 'Visa', '9000.0000', NULL, 13, 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 (2100, '2025-02-20 17:22:00', 1828, NULL, NULL, '1161', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2101, '2025-02-20 17:22:00', 1828, NULL, NULL, '1162', NULL, 'cash', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, 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 (2102, '2025-02-05 17:23:00', 1829, NULL, NULL, '1163', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2103, '2025-02-20 17:26:00', 1829, NULL, NULL, '1164', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2104, '2025-01-24 17:28:00', 1830, NULL, NULL, '1165', NULL, 'bank', '', '', '', '', '', 'Visa', '15400.0000', NULL, 13, 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 (2105, '2025-02-20 17:30:00', 1830, NULL, NULL, '1166', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2106, '2025-01-24 17:31:00', 1831, NULL, NULL, '1167', NULL, 'bank', '', '', '', '', '', 'Visa', '12300.0000', NULL, 13, 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 (2107, '2025-02-20 17:33:00', 1831, NULL, NULL, '1168', NULL, 'cash', '', '', '', '', '', 'Visa', '1700.0000', NULL, 13, 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 (2108, '2025-01-31 17:33:00', 1832, NULL, NULL, '1169', NULL, 'cash', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (2109, '2025-02-20 17:35:00', 1832, NULL, NULL, '1170', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2110, '2025-02-21 16:24:00', 1833, NULL, NULL, '1171', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2111, '2025-02-21 16:35:00', 1834, NULL, NULL, '1172', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2112, '2025-02-21 16:39:00', 1835, NULL, NULL, '1173', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2113, '2025-02-21 16:40:00', 1836, NULL, NULL, '1174', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2115, '2025-02-21 09:02:00', 1837, NULL, NULL, '1176', NULL, 'bank', '', '', '', '', '', 'Visa', '28500.0000', NULL, 13, 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 (2116, '2025-02-21 09:06:00', 1816, NULL, NULL, '1177', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '90000.0000', NULL, 13, 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 (2117, '2025-02-21 09:25:00', 1838, NULL, NULL, '1178', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2118, '2025-01-28 09:26:00', 1839, NULL, NULL, '1179', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2119, '2025-02-21 09:28:00', 1839, NULL, NULL, '1180', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2120, '2025-01-07 09:29:00', 1840, NULL, NULL, '1181', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2121, '2025-02-21 09:33:00', 1840, NULL, NULL, '1182', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '15400.0000', NULL, 13, 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 (2122, '2025-02-21 09:34:00', 1841, NULL, NULL, '1183', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2123, '2025-02-18 09:47:00', 1842, NULL, NULL, '1184', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2125, '2025-02-17 09:49:00', 1843, NULL, NULL, '1186', NULL, 'bank', '', '', '', '', '', 'Visa', '7800.0000', NULL, 13, 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 (2126, '2025-02-21 09:51:00', 1843, NULL, NULL, '1187', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2127, '2025-02-21 09:52:00', 1844, NULL, NULL, '1188', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2128, '2025-02-21 09:54:00', 1845, NULL, NULL, '1189', NULL, 'bank', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2129, '2025-02-06 10:02:00', 1846, NULL, NULL, '1190', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2130, '2025-02-21 10:03:00', 1846, NULL, NULL, '1191', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2131, '2025-01-30 10:04:00', 1847, NULL, NULL, '1192', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2132, '2025-02-21 10:09:00', 1847, NULL, NULL, '1193', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2133, '2025-02-21 10:09:00', 1847, NULL, NULL, '1194', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2134, '2025-02-21 10:10:00', 1848, NULL, NULL, '1195', NULL, 'cash', '', '', '', '', '', 'Visa', '950.0000', NULL, 13, 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 (2135, '2025-02-21 10:15:00', 1849, NULL, NULL, '1196', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2136, '2025-02-21 10:19:00', 1850, NULL, NULL, '1197', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2137, '2025-02-21 10:20:00', 1851, NULL, NULL, '1198', NULL, 'cash', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2138, '2025-02-01 10:24:00', 1852, NULL, NULL, '1199', NULL, 'cash', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2139, '2025-02-21 10:26:00', 1852, NULL, NULL, '1200', NULL, 'cash', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2140, '2025-01-25 10:27:00', 1853, NULL, NULL, '1201', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2141, '2025-02-21 10:31:00', 1853, NULL, NULL, '1202', NULL, 'bank', '', '', '', '', '', 'Visa', '6400.0000', NULL, 13, 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 (2142, '2025-01-23 10:32:00', 1854, NULL, NULL, '1203', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2143, '2025-02-21 10:36:00', 1854, NULL, NULL, '1204', NULL, 'bank', '', '', '', '', '', 'Visa', '20500.0000', NULL, 13, 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 (2144, '2025-02-22 11:46:00', 1855, NULL, NULL, '1205', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2145, '2025-02-22 11:46:00', 1856, NULL, NULL, '1206', NULL, 'cash', '', '', '', '', '', 'Visa', '3200.0000', NULL, 13, 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 (2146, '2025-02-06 11:48:00', 1857, NULL, NULL, '1207', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2147, '2025-02-22 11:49:00', 1794, NULL, NULL, '1208', NULL, 'cash', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2148, '2025-01-27 11:51:00', 1858, NULL, NULL, '1209', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '16000.0000', NULL, 13, 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 (2149, '2025-02-22 11:52:00', 1858, NULL, NULL, '1210', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1100.0000', NULL, 13, 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 (2150, '2025-02-22 11:53:00', 1859, NULL, NULL, '1211', NULL, 'cash', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2151, '2025-02-22 13:35:00', 1822, NULL, NULL, '1212', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2152, '2025-02-22 13:38:00', 1861, NULL, NULL, '1213', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2153, '2025-02-22 13:39:00', 1862, NULL, NULL, '1214', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2154, '2025-02-22 13:40:00', 1863, NULL, NULL, '1215', NULL, 'cash', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2155, '2025-02-03 13:42:00', 1864, NULL, NULL, '1216', NULL, 'cash', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2156, '2025-02-22 13:50:00', 1864, NULL, NULL, '1217', NULL, 'bank', '', '', '', '', '', 'Visa', '2900.0000', NULL, 13, 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 (2157, '2025-02-22 13:52:00', 1803, NULL, NULL, '1218', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2158, '2025-02-22 13:54:00', 1865, NULL, NULL, '1219', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2159, '2025-02-24 15:48:00', 1787, NULL, NULL, '1220', NULL, 'cash', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2160, '2025-02-24 15:54:00', 1852, NULL, NULL, '1221', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2161, '2025-02-24 15:55:00', 1852, NULL, NULL, '1222', NULL, 'cash', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2162, '2025-02-24 15:58:00', 1864, NULL, NULL, '1223', NULL, 'cash', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (2164, '2025-02-24 16:03:00', 1867, NULL, NULL, '1225', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2700.0000', NULL, 13, 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 (2165, '2025-02-24 16:04:00', 1867, NULL, NULL, '1226', NULL, 'cash', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, NULL, 'received', '<p>collected 3 trays on 24th february</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2166, '2025-01-23 16:05:00', 1879, NULL, NULL, '1227', NULL, 'cash', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2167, '2025-02-24 16:12:00', 1879, NULL, NULL, '1228', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2168, '2025-02-24 16:13:00', 1879, NULL, NULL, '1229', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, NULL, 'received', '<p>1/2 tray was not charged because one tray had a complain</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2169, '2025-02-03 16:15:00', 1880, NULL, NULL, '1230', NULL, 'cash', '', '', '', '', '', 'Visa', '13000.0000', NULL, 13, 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 (2170, '2025-02-24 16:16:00', 1880, NULL, NULL, '1231', NULL, 'cash', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2171, '2025-02-06 16:17:00', 1881, NULL, NULL, '1232', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2172, '2025-02-24 16:22:00', 1881, NULL, NULL, '1233', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2173, '2025-01-23 16:24:00', 1882, NULL, NULL, '1234', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2174, '2025-02-24 16:27:00', 1882, NULL, NULL, '1235', NULL, 'cash', '', '', '', '', '', 'Visa', '16100.0000', NULL, 13, 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 (2175, '2025-02-24 16:30:00', 1883, NULL, NULL, '1236', NULL, 'cash', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2176, '2025-02-24 16:34:00', 1885, NULL, NULL, '1237', NULL, 'cash', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2177, '2025-02-24 16:37:00', 1886, NULL, NULL, '1238', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2178, '2025-02-24 16:40:00', 1887, NULL, NULL, '1239', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2179, '2025-02-24 16:43:00', 1888, NULL, NULL, '1240', NULL, 'cash', '', '', '', '', '', 'Visa', '201.7000', NULL, 13, 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 (2180, '2025-02-24 17:06:00', 1889, NULL, NULL, '1241', NULL, 'cash', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2181, '2025-02-24 17:07:00', 1890, NULL, NULL, '1242', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2182, '2025-02-03 17:08:00', 1891, NULL, NULL, '1243', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2183, '2025-02-24 17:10:00', 1891, NULL, NULL, '1244', NULL, 'bank', '', '', '', '', '', 'Visa', '8400.0000', NULL, 13, 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 (2184, '2025-01-30 17:11:00', 1892, NULL, NULL, '1245', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2185, '2025-02-24 17:12:00', 1892, NULL, NULL, '1246', NULL, 'bank', '', '', '', '', '', 'Visa', '1700.0000', NULL, 13, 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 (2186, '2025-01-28 17:12:00', 1893, NULL, NULL, '1247', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2187, '2025-02-24 17:13:00', 1893, NULL, NULL, '1248', NULL, 'bank', '', '', '', '', '', 'Visa', '15900.0000', NULL, 13, 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 (2188, '2025-01-29 14:36:00', 1894, NULL, NULL, '1249', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2189, '2025-02-24 14:38:00', 1894, NULL, NULL, '1250', NULL, 'bank', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2190, '2025-01-27 14:39:00', 1897, NULL, NULL, '1251', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2191, '2025-02-24 14:57:00', 1897, NULL, NULL, '1252', NULL, 'bank', '', '', '', '', '', 'Visa', '27300.0000', NULL, 13, 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 (2192, '2025-02-24 15:07:00', 1898, NULL, NULL, '1253', NULL, 'bank', '', '', '', '', '', 'Visa', '2200.0000', NULL, 13, 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 (2193, '2025-02-24 15:12:00', 1899, NULL, NULL, '1254', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2194, '2025-02-24 15:14:00', 1900, NULL, NULL, '1255', NULL, 'bank', '', '', '', '', '', 'Visa', '2200.0000', NULL, 13, 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 (2195, '2025-02-24 15:15:00', 1901, NULL, NULL, '1256', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2196, '2025-02-24 15:18:00', 1902, NULL, NULL, '1257', NULL, 'bank', '', '', '', '', '', 'Visa', '70.0000', NULL, 13, 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 (2197, '2025-02-24 15:21:00', 1829, NULL, NULL, '1258', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2198, '2025-02-24 15:22:00', 1716, NULL, NULL, '1259', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2199, '2025-02-24 15:24:00', 1903, NULL, NULL, '1260', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2200, '0000-00-00 00:00:00', 1904, NULL, NULL, '1261', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2201, '2025-02-24 15:27:00', 1904, NULL, NULL, '1262', NULL, 'cash', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2202, '2025-02-24 15:28:00', 1904, NULL, NULL, '1263', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2203, '2025-02-25 15:33:00', 1816, NULL, NULL, '1264', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2204, '2025-02-25 15:33:00', 1905, NULL, NULL, '1265', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2205, '2025-01-30 15:34:00', 1906, NULL, NULL, '1266', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '64200.0000', NULL, 13, 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 (2206, '2025-02-25 15:36:00', 1906, NULL, NULL, '1267', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '17500.0000', NULL, 13, 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 (2207, '2025-02-25 15:37:00', 1907, NULL, NULL, '1268', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2208, '2025-02-25 15:38:00', 1908, NULL, NULL, '1269', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, 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 (2209, '2025-02-25 15:41:00', 1909, NULL, NULL, '1270', NULL, 'bank', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2210, '2025-02-25 15:42:00', 1910, NULL, NULL, '1271', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2211, '2025-02-25 15:43:00', 1911, NULL, NULL, '1272', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2212, '2025-02-25 15:46:00', 1913, NULL, NULL, '1273', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2213, '2025-02-25 15:47:00', 1914, NULL, NULL, '1274', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2214, '2025-02-25 15:59:00', 1915, NULL, NULL, '1275', NULL, 'bank', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2215, '2025-02-25 16:00:00', 1916, NULL, NULL, '1276', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2216, '2025-02-25 16:02:00', 1917, NULL, NULL, '1277', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2217, '2025-02-25 16:04:00', 1918, NULL, NULL, '1278', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2218, '2025-02-25 16:06:00', 1919, NULL, NULL, '1279', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2219, '2025-01-27 16:08:00', 1920, NULL, NULL, '1280', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2220, '2025-02-25 16:10:00', 1920, NULL, NULL, '1281', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '47600.0000', NULL, 13, 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 (2221, '2025-02-03 16:11:00', 1921, NULL, NULL, '1282', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2222, '2025-02-25 16:13:00', 1921, NULL, NULL, '1283', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '35800.0000', NULL, 13, 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 (2223, '2025-02-17 16:16:00', 1922, NULL, NULL, '1284', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2224, '2025-02-25 16:18:00', 1922, NULL, NULL, '1285', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2225, '2025-02-03 16:19:00', 1923, NULL, NULL, '1286', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2226, '2025-02-25 16:23:00', 1923, NULL, NULL, '1287', NULL, 'bank', '', '', '', '', '', 'Visa', '6400.0000', NULL, 13, 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 (2227, '2025-02-03 16:23:00', 1924, NULL, NULL, '1288', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2228, '2025-02-25 16:25:00', 1924, NULL, NULL, '1289', NULL, 'bank', '', '', '', '', '', 'Visa', '1700.0000', NULL, 13, 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 (2229, '2025-02-25 16:28:00', 1925, NULL, NULL, '1290', NULL, 'bank', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2230, '2025-02-25 16:31:00', 1926, NULL, NULL, '1291', NULL, 'bank', '', '', '', '', '', 'Visa', '2925.0000', NULL, 13, 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 (2231, '2025-02-25 16:35:00', 1927, NULL, NULL, '1292', NULL, 'cash', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2232, '2025-02-25 16:36:00', 1927, NULL, NULL, '1293', NULL, 'bank', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2233, '2025-01-31 16:39:00', 1928, NULL, NULL, '1294', NULL, 'cash', '', '', '', '', '', 'Visa', '11500.0000', NULL, 13, 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 (2234, '2025-02-25 16:43:00', 1928, NULL, NULL, '1295', NULL, 'bank', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2235, '2025-02-25 16:43:00', 1928, NULL, NULL, '1296', NULL, 'cash', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2236, '2025-02-25 16:43:00', 1929, NULL, NULL, '1297', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2237, '2025-01-31 16:45:00', 1930, NULL, NULL, '1298', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2238, '2025-01-31 16:47:00', 1930, NULL, NULL, '1299', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2239, '2025-02-25 16:48:00', 1930, NULL, NULL, '1300', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2240, '2025-01-30 16:49:00', 1931, NULL, NULL, '1301', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2241, '2025-02-25 16:50:00', 1931, NULL, NULL, '1302', NULL, 'bank', '', '', '', '', '', 'Visa', '2700.0000', NULL, 13, 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 (2242, '2025-01-13 16:51:00', 1932, NULL, NULL, '1303', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2243, '2025-02-25 16:52:00', 1932, NULL, NULL, '1304', NULL, 'bank', '', '', '', '', '', 'Visa', '6400.0000', NULL, 13, 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 (2244, '2025-02-04 16:53:00', 1933, NULL, NULL, '1305', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2245, '2025-02-25 16:58:00', 1933, NULL, NULL, '1306', NULL, 'bank', '', '', '', '', '', 'Visa', '4400.0000', NULL, 13, 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 (2246, '2025-02-17 17:00:00', 1934, NULL, NULL, '1307', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2247, '2025-02-25 17:03:00', 1934, NULL, NULL, '1308', NULL, 'bank', '', '', '', '', '', 'Visa', '3700.0000', NULL, 13, 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 (2248, '2025-02-04 17:04:00', 1935, NULL, NULL, '1309', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2249, '2025-02-25 17:17:00', 1935, NULL, NULL, '1310', NULL, 'cash', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2250, '2025-01-31 17:17:00', 1936, NULL, NULL, '1311', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2251, '2025-02-25 17:20:00', 1936, NULL, NULL, '1312', NULL, 'cash', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, 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 (2252, '2025-02-25 08:28:00', 1937, NULL, NULL, '1313', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2253, '2025-02-25 08:30:00', 1938, NULL, NULL, '1314', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2256, '2025-02-25 10:56:00', 1807, NULL, NULL, '1317', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2257, '2025-02-25 11:41:00', 1782, NULL, NULL, '1318', NULL, 'cash', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2260, '2025-02-25 11:45:00', 1889, NULL, NULL, '1321', NULL, 'cash', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, 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 (2261, '2025-02-25 11:46:00', 1942, NULL, NULL, '1322', NULL, 'cash', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2262, '2025-02-25 11:48:00', 1943, NULL, NULL, '1323', NULL, 'cash', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2263, '0000-00-00 00:00:00', 1944, NULL, NULL, '1324', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2264, '2025-02-25 11:52:00', 1944, NULL, NULL, '1325', NULL, 'cash', '', '', '', '', '', 'Visa', '1150.0000', NULL, 13, 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 (2265, '2025-02-24 12:27:00', 1946, NULL, NULL, '1326', NULL, 'cash', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2266, '2025-02-26 15:57:00', 1947, NULL, NULL, '1327', NULL, 'bank', '', '', '', '', '', 'Visa', '2900.0000', NULL, 13, 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 (2267, '2025-02-26 16:01:00', 1949, NULL, NULL, '1328', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2271, '2025-02-26 16:16:00', 1953, NULL, NULL, '1332', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2272, '2025-02-26 16:17:00', 1954, NULL, NULL, '1333', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, 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 (2273, '2025-02-26 16:19:00', 1954, NULL, NULL, '1334', NULL, 'bank', '', '', '', '', '', 'Visa', '94.0000', NULL, 13, 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 (2274, '2025-02-26 16:20:00', 1955, NULL, NULL, '1335', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '14400.0000', NULL, 13, 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 (2275, '2025-02-26 16:34:00', 1955, NULL, NULL, '1336', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2276, '2025-02-03 16:34:00', 1956, NULL, NULL, '1337', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2277, '2025-02-03 16:36:00', 1956, NULL, NULL, '1338', NULL, 'bank', '', '', '', '', '', 'Visa', '18500.0000', NULL, 13, 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 (2278, '2025-02-26 16:36:00', 1956, NULL, NULL, '1339', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '9800.0000', NULL, 13, 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 (2279, '2025-02-26 16:40:00', 1957, NULL, NULL, '1340', NULL, 'cash', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2280, '2025-02-26 16:40:00', 1958, NULL, NULL, '1341', NULL, 'bank', '', '', '', '', '', 'Visa', '3200.0000', NULL, 13, 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 (2281, '2025-02-26 16:43:00', 1959, NULL, NULL, '1342', NULL, 'cash', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2282, '2025-02-26 16:46:00', 1960, NULL, NULL, '1343', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2284, '2025-02-26 16:48:00', 1962, NULL, NULL, '1345', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2285, '2025-02-26 16:51:00', 1963, NULL, NULL, '1346', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2286, '2025-02-26 16:53:00', 1964, NULL, NULL, '1347', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2287, '2025-02-26 16:54:00', 1930, NULL, NULL, '1348', NULL, 'bank', '', '', '', '', '', 'Visa', '19000.0000', NULL, 13, 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 (2288, '2025-02-26 16:56:00', 1702, NULL, NULL, '1349', NULL, 'bank', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2289, '2025-02-26 16:57:00', 1798, NULL, NULL, '1350', NULL, 'bank', '', '', '', '', '', 'Visa', '6500.0000', NULL, 13, 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 (2290, '2025-02-26 16:58:00', 1965, NULL, NULL, '1351', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2291, '2025-02-05 17:00:00', 1966, NULL, NULL, '1352', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2292, '2025-02-26 17:04:00', 1966, NULL, NULL, '1353', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2293, '2025-02-26 17:07:00', 1918, NULL, NULL, '1354', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2294, '2025-02-26 17:08:00', 1967, NULL, NULL, '1355', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2295, '2025-02-03 17:12:00', 1968, NULL, NULL, '1356', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2296, '2025-02-26 17:12:00', 1968, NULL, NULL, '1357', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2297, '2025-02-26 17:14:00', 1778, NULL, NULL, '1358', NULL, 'bank', '', '', '', '', '', 'Visa', '15200.0000', NULL, 13, 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 (2298, '2025-02-27 15:09:00', 1973, NULL, NULL, '1359', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2299, '2025-02-27 15:13:00', 1974, NULL, NULL, '1360', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2300, '2025-02-27 15:17:00', 1975, NULL, NULL, '1361', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2301, '2025-02-27 15:33:00', 1976, NULL, NULL, '1362', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2302, '2025-02-27 15:37:00', 1977, NULL, NULL, '1363', NULL, 'bank', '', '', '', '', '', 'Visa', '15400.0000', NULL, 13, 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 (2303, '2025-02-27 15:42:00', 1734, NULL, NULL, '1364', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2304, '2025-01-28 15:43:00', 1978, NULL, NULL, '1365', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2305, '2025-02-27 15:45:00', 1978, NULL, NULL, '1366', NULL, 'bank', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2306, '2025-02-27 15:51:00', 1970, NULL, NULL, '1367', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2307, '2025-01-31 15:53:00', 1979, NULL, NULL, '1368', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2308, '2025-02-27 15:54:00', 1979, NULL, NULL, '1369', NULL, 'bank', '', '', '', '', '', 'Visa', '8500.0000', NULL, 13, 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 (2309, '2025-02-05 15:55:00', 1980, NULL, NULL, '1370', NULL, 'bank', '', '', '', '', '', 'Visa', '3300.0000', NULL, 13, 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 (2310, '2025-02-27 15:57:00', 1980, NULL, NULL, '1371', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2311, '2025-01-30 10:13:00', 1981, NULL, NULL, '1372', NULL, 'bank', '', '', '', '', '', 'Visa', '30000.0000', NULL, 13, 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 (2312, '2025-02-27 16:00:00', 1981, NULL, NULL, '1373', NULL, 'bank', '', '', '', '', '', 'Visa', '27000.0000', NULL, 13, 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 (2313, '2025-01-29 16:13:00', 1767, NULL, NULL, '1374', NULL, 'cash', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2314, '2025-02-27 16:14:00', 1767, NULL, NULL, '1375', NULL, 'bank', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, 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 (2315, '2025-02-25 16:16:00', 1757, NULL, NULL, '1376', NULL, 'bank', '', '', '', '', '', 'Visa', '2925.0000', NULL, 13, 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 (2316, '2025-02-03 16:21:00', 1983, NULL, NULL, '1377', NULL, 'bank', '', '', '', '', '', 'Visa', '22800.0000', NULL, 13, 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 (2317, '2025-02-03 16:26:00', 1984, NULL, NULL, '1378', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2318, '2025-02-27 16:27:00', 1984, NULL, NULL, '1379', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2319, '2025-02-27 16:34:00', 1867, NULL, NULL, '1380', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2320, '2025-02-27 16:35:00', 1986, NULL, NULL, '1381', NULL, 'bank', '', '', '', '', '', 'Visa', '725.0000', NULL, 13, 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 (2321, '2025-02-27 16:49:00', 1987, NULL, NULL, '1382', NULL, 'bank', '', '', '', '', '', 'Visa', '950.0000', NULL, 13, 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 (2322, '2025-02-27 17:07:00', 1988, NULL, NULL, '1383', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2323, '2025-02-28 16:01:00', 1989, NULL, NULL, '1384', NULL, 'bank', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2324, '2025-02-28 16:03:00', 1990, NULL, NULL, '1385', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2325, '2025-02-28 16:06:00', 1991, NULL, NULL, '1386', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2326, '2025-02-28 16:13:00', 1993, NULL, NULL, '1387', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2327, '2025-02-28 16:16:00', 1994, NULL, NULL, '1388', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2329, '2025-02-11 12:39:00', 1999, NULL, NULL, '1390', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2330, '2025-02-28 12:40:00', 2000, NULL, NULL, '1391', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, NULL, 'received', '<p>paid by allan mwangi waithera</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2331, '2025-02-11 12:42:00', 2001, NULL, NULL, '1392', NULL, 'cash', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, NULL, 'received', '<p>paid by allan mwangi waithera</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2332, '2025-02-11 12:43:00', 2002, NULL, NULL, '1393', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid by allan mwangi waithera</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2333, '2025-02-11 12:44:00', 2003, NULL, NULL, '1394', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2334, '2025-02-11 12:47:00', 2004, NULL, NULL, '1395', NULL, 'bank', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2335, '2025-02-12 12:48:00', 2005, NULL, NULL, '1396', NULL, 'bank', '', '', '', '', '', 'Visa', '9000.0000', NULL, 13, 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 (2336, '2025-02-12 12:53:00', 2005, NULL, NULL, '1397', NULL, 'cash', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2337, '2025-02-12 12:57:00', 2008, NULL, NULL, '1398', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2338, '2025-02-12 12:58:00', 2009, NULL, NULL, '1399', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2339, '2025-02-12 13:00:00', 2010, NULL, NULL, '1400', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2340, '2025-02-12 13:00:00', 2011, NULL, NULL, '1401', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2341, '2025-02-12 13:02:00', 2012, NULL, NULL, '1402', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2342, '2025-02-26 13:04:00', 2012, NULL, NULL, '1403', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2343, '2025-02-12 13:05:00', 2013, NULL, NULL, '1404', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2344, '2025-02-13 13:22:00', 2015, NULL, NULL, '1405', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2345, '2025-02-13 13:23:00', 2016, NULL, NULL, '1406', NULL, 'bank', '', '', '', '', '', 'Visa', '57000.0000', NULL, 13, 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 (2346, '2025-02-13 13:25:00', 2018, NULL, NULL, '1407', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2347, '2025-02-13 13:28:00', 2019, NULL, NULL, '1408', NULL, 'bank', '', '', '', '', '', 'Visa', '1800.0000', NULL, 13, 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 (2348, '2025-02-13 13:29:00', 2020, NULL, NULL, '1409', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '19200.0000', NULL, 13, 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 (2349, '2025-02-13 13:31:00', 2021, NULL, NULL, '1410', NULL, 'cash', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2350, '2025-02-14 13:32:00', 2022, NULL, NULL, '1411', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2351, '2025-02-14 13:34:00', 2023, NULL, NULL, '1412', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2352, '2025-02-14 13:35:00', 2024, NULL, NULL, '1413', NULL, 'cash', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2353, '2025-02-14 13:36:00', 2025, NULL, NULL, '1414', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2354, '2025-02-14 13:37:00', 2026, NULL, NULL, '1415', NULL, 'cash', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2356, '2025-02-14 14:09:00', 2028, NULL, NULL, '1417', NULL, 'bank', '', '', '', '', '', 'Visa', '40000.0000', NULL, 13, 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 (2357, '2025-02-15 14:10:00', 2029, NULL, NULL, '1418', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2358, '2025-02-15 14:11:00', 2030, NULL, NULL, '1419', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2359, '2025-02-25 14:13:00', 2030, NULL, NULL, '1420', NULL, 'bank', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2360, '2025-02-15 14:14:00', 2031, NULL, NULL, '1421', NULL, 'bank', '', '', '', '', '', 'Visa', '10400.0000', NULL, 13, 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 (2361, '2025-02-17 14:16:00', 2032, NULL, NULL, '1422', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2362, '2025-02-17 16:10:00', 2037, NULL, NULL, '1423', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2363, '2025-02-17 16:11:00', 2038, NULL, NULL, '1424', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2364, '2025-02-17 16:12:00', 2039, NULL, NULL, '1425', NULL, 'cash', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2365, '2025-02-17 16:13:00', 2040, NULL, NULL, '1426', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2366, '2025-02-17 16:15:00', 2041, NULL, NULL, '1427', NULL, 'bank', '', '', '', '', '', 'Visa', '6200.0000', NULL, 13, 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 (2367, '2025-02-18 16:18:00', 2041, NULL, NULL, '1428', NULL, 'cash', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2368, '2025-02-17 16:18:00', 2042, NULL, NULL, '1429', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2369, '2025-02-17 16:21:00', 2043, NULL, NULL, '1430', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2370, '2025-02-17 16:23:00', 2045, NULL, NULL, '1431', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2371, '2025-02-17 16:25:00', 2046, NULL, NULL, '1432', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2372, '2025-03-01 16:26:00', 2047, NULL, NULL, '1433', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2373, '2025-03-01 16:31:00', 2048, NULL, NULL, '1434', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2374, '2025-03-01 16:33:00', 2049, NULL, NULL, '1435', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2375, '2025-03-01 16:34:00', 2050, NULL, NULL, '1436', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2376, '2025-03-03 16:29:00', 2052, NULL, NULL, '1437', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2377, '2025-03-03 16:50:00', 2054, NULL, NULL, '1438', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2378, '2025-03-03 16:50:00', 2051, NULL, NULL, '1439', NULL, 'bank', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, 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 (2379, '2025-03-03 16:51:00', 1867, NULL, NULL, '1440', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2380, '2025-03-03 16:51:00', 1999, NULL, NULL, '1441', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2381, '2025-03-03 16:52:00', 1734, NULL, NULL, '1442', NULL, 'bank', '', '', '', '', '', 'Visa', '23000.0000', NULL, 13, 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 (2382, '2025-02-01 16:54:00', 2055, NULL, NULL, '1443', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2383, '2025-02-01 16:57:00', 2056, NULL, NULL, '1444', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2384, '2025-03-03 16:58:00', 2057, NULL, NULL, '1445', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2385, '2025-03-03 17:00:00', 1768, NULL, NULL, '1446', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, 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 (2386, '2025-01-25 17:00:00', 2058, NULL, NULL, '1447', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2387, '2025-03-03 17:02:00', 2058, NULL, NULL, '1448', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '100000.0000', NULL, 13, 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 (2388, '2025-03-03 17:03:00', 1916, NULL, NULL, '1449', NULL, 'bank', '', '', '', '', '', 'Visa', '5500.0000', NULL, 13, 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 (2389, '2025-03-03 17:04:00', 2016, NULL, NULL, '1450', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2390, '2025-03-03 17:04:00', 1785, NULL, NULL, '1451', NULL, 'bank', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, NULL, 'received', '<p>paid by morris</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2391, '2025-03-03 17:07:00', 1785, NULL, NULL, '1452', NULL, 'bank', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2392, '2025-03-03 17:07:00', 1809, NULL, NULL, '1453', NULL, 'bank', '', '', '', '', '', 'Visa', '9000.0000', NULL, 13, 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 (2393, '2025-03-03 17:07:00', 1809, NULL, NULL, '1454', NULL, 'bank', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, NULL, 'received', '<p>paid by patrick nyamu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2394, '2025-02-17 17:08:00', 2007, NULL, NULL, '1455', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2395, '2025-03-03 17:09:00', 2007, NULL, NULL, '1456', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2396, '2025-02-07 17:09:00', 2059, NULL, NULL, '1457', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2397, '2025-03-03 17:11:00', 2059, NULL, NULL, '1458', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2398, '2025-03-03 17:12:00', 2060, NULL, NULL, '1459', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2399, '2025-01-30 17:13:00', 2061, NULL, NULL, '1460', NULL, 'bank', '', '', '', '', '', 'Visa', '15500.0000', NULL, 13, 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 (2400, '2025-03-03 17:16:00', 2061, NULL, NULL, '1461', NULL, 'bank', '', '', '', '', '', 'Visa', '9200.0000', NULL, 13, 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 (2401, '2025-03-03 08:21:00', 1846, NULL, NULL, '1462', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2402, '2025-03-03 08:22:00', 1801, NULL, NULL, '1463', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2403, '2025-03-03 08:24:00', 2062, NULL, NULL, '1464', NULL, 'bank', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2404, '2025-02-05 08:32:00', 2063, NULL, NULL, '1465', NULL, 'bank', '', '', '', '', '', 'Visa', '1950.0000', NULL, 13, 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 (2405, '2025-03-03 08:35:00', 2063, NULL, NULL, '1466', NULL, 'bank', '', '', '', '', '', 'Visa', '5650.0000', NULL, 13, 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 (2406, '2025-03-03 08:41:00', 1805, NULL, NULL, '1467', NULL, 'bank', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (2408, '2025-02-11 08:56:00', 2064, NULL, NULL, '1469', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7900.0000', NULL, 13, 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 (2409, '2025-03-03 09:04:00', 2064, NULL, NULL, '1470', NULL, 'bank', '', '', '', '', '', 'Visa', '20600.0000', NULL, 13, 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 (2410, '2025-03-03 09:07:00', 1804, NULL, NULL, '1471', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2411, '2025-03-03 09:08:00', 1795, NULL, NULL, '1472', NULL, 'bank', '', '', '', '', '', 'Visa', '3750.0000', NULL, 13, 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 (2412, '2025-02-01 09:09:00', 2065, NULL, NULL, '1473', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2413, '2025-03-04 09:10:00', 2065, NULL, NULL, '1474', NULL, 'bank', '', '', '', '', '', 'Visa', '18000.0000', NULL, 13, 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 (2414, '2025-03-03 09:15:00', 2066, NULL, NULL, '1475', NULL, 'bank', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2415, '2025-03-03 09:25:00', 2001, NULL, NULL, '1476', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2416, '2025-03-03 09:29:00', 2067, NULL, NULL, '1477', NULL, 'bank', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2417, '2025-03-04 08:19:00', 1803, NULL, NULL, '1478', NULL, 'bank', '', '', '', '', '', 'Visa', '7100.0000', NULL, 13, 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 (2418, '2025-03-04 08:19:00', 1928, NULL, NULL, '1479', NULL, 'bank', '', '', '', '', '', 'Visa', '5600.0000', NULL, 13, 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 (2419, '2025-03-04 08:21:00', 1799, NULL, NULL, '1480', NULL, 'bank', '', '', '', '', '', 'Visa', '8200.0000', NULL, 13, 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 (2420, '2025-03-04 08:22:00', 2068, NULL, NULL, '1481', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2421, '2025-03-04 08:24:00', 2069, NULL, NULL, '1482', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2423, '2025-03-04 08:32:00', 2071, NULL, NULL, '1484', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2424, '2025-03-06 08:53:00', 2025, NULL, NULL, '1485', NULL, 'bank', '', '', '', '', '', 'Visa', '8400.0000', NULL, 13, 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 (2425, '2025-03-04 08:55:00', 1774, NULL, NULL, '1486', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2426, '2025-03-04 08:56:00', 2072, NULL, NULL, '1487', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, NULL, 'received', '<p>200 in left deposit of tray</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2427, '2025-03-04 09:03:00', 2073, NULL, NULL, '1488', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2428, '2025-03-04 09:05:00', 2074, NULL, NULL, '1489', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2429, '2025-03-04 09:25:00', 2075, NULL, NULL, '1490', NULL, 'bank', '', '', '', '', '', 'Visa', '40000.0000', NULL, 13, 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 (2432, '2025-02-04 09:36:00', 2077, NULL, NULL, '1493', NULL, 'cash', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2433, '2025-03-04 09:38:00', 2077, NULL, NULL, '1494', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2434, '2025-03-04 09:41:00', 2077, NULL, NULL, '1495', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2435, '2025-03-05 09:41:00', 2077, NULL, NULL, '1496', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2436, '2025-03-06 20:05:00', 2002, NULL, NULL, '1497', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '20800.0000', NULL, 13, 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 (2437, '2025-03-06 20:06:00', 2019, NULL, NULL, '1498', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, NULL, 'received', '<p>paid by joseph ndege</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2438, '2025-03-06 20:07:00', 1705, NULL, NULL, '1499', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '25000.0000', NULL, 13, 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 (2439, '2025-03-06 20:10:00', 2078, NULL, NULL, '1500', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2440, '2025-03-06 20:11:00', 2079, NULL, NULL, '1501', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2441, '2025-03-06 20:12:00', 2080, NULL, NULL, '1502', NULL, 'bank', '', '', '', '', '', 'Visa', '25000.0000', NULL, 13, 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 (2442, '2025-03-06 20:13:00', 2043, NULL, NULL, '1503', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2443, '2025-03-06 20:14:00', 2043, NULL, NULL, '1504', NULL, 'bank', '', '', '', '', '', 'Visa', '7800.0000', NULL, 13, NULL, 'received', '<p>paid by charles muhiu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2444, '2025-03-06 20:14:00', 1720, NULL, NULL, '1505', NULL, 'bank', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, 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 (2445, '2025-03-06 20:15:00', 1697, NULL, NULL, '1506', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2446, '2025-03-06 20:16:00', 2023, NULL, NULL, '1507', NULL, 'bank', '', '', '', '', '', 'Visa', '1800.0000', NULL, 13, 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 (2447, '2025-03-06 20:16:00', 1836, NULL, NULL, '1508', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2448, '2025-03-06 20:17:00', 2024, NULL, NULL, '1509', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2449, '2025-03-05 20:19:00', 2081, NULL, NULL, '1510', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2450, '2025-03-05 20:21:00', 2082, NULL, NULL, '1511', NULL, 'bank', '', '', '', '', '', 'Visa', '1800.0000', NULL, 13, 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 (2451, '2025-03-05 20:23:00', 2083, NULL, NULL, '1512', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2452, '2025-03-05 20:24:00', 2084, NULL, NULL, '1513', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2453, '2025-03-05 20:26:00', 2085, NULL, NULL, '1514', NULL, 'bank', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2454, '2025-03-05 20:27:00', 2086, NULL, NULL, '1515', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2455, '2025-03-05 20:29:00', 2088, NULL, NULL, '1516', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2456, '2025-03-05 20:31:00', 2089, NULL, NULL, '1517', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2457, '2025-03-05 20:33:00', 2047, NULL, NULL, '1518', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '<p>paid by evan mugo</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2458, '2025-03-05 20:36:00', 1914, NULL, NULL, '1519', NULL, 'bank', '', '', '', '', '', 'Visa', '2900.0000', NULL, 13, 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 (2459, '2025-03-05 20:38:00', 1696, NULL, NULL, '1520', NULL, 'bank', '', '', '', '', '', 'Visa', '132500.0000', NULL, 13, 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 (2460, '2025-03-05 20:40:00', 2051, NULL, NULL, '1521', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2461, '2025-03-03 20:45:00', 2011, NULL, NULL, '1522', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2462, '2025-03-05 20:47:00', 2005, NULL, NULL, '1523', NULL, 'bank', '', '', '', '', '', 'Visa', '2100.0000', NULL, 13, 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 (2463, '2025-03-05 20:48:00', 2003, NULL, NULL, '1524', NULL, 'bank', '', '', '', '', '', 'Visa', '16900.0000', NULL, 13, 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 (2464, '2025-02-21 20:59:00', 1842, NULL, NULL, '1525', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2466, '2025-03-01 21:02:00', 1716, NULL, NULL, '1527', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2467, '2025-03-01 21:06:00', 1718, NULL, NULL, '1528', NULL, 'bank', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (2468, '2025-02-25 21:08:00', 1772, NULL, NULL, '1529', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2469, '2025-03-05 21:12:00', 1835, NULL, NULL, '1530', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2470, '2025-03-01 21:18:00', 1901, NULL, NULL, '1531', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2471, '2025-03-04 21:21:00', 1957, NULL, NULL, '1532', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2472, '2025-02-28 21:26:00', 2091, NULL, NULL, '1533', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2473, '2025-02-28 21:29:00', 2092, NULL, NULL, '1534', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2474, '2025-02-28 21:31:00', 1812, NULL, NULL, '1535', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2475, '2025-02-28 21:34:00', 1766, NULL, NULL, '1536', NULL, 'bank', '', '', '', '', '', 'Visa', '3400.0000', NULL, 13, 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 (2476, '2025-02-28 21:35:00', 2093, NULL, NULL, '1537', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2477, '2025-03-01 21:37:00', 1726, NULL, NULL, '1538', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2478, '2025-03-03 21:39:00', 2094, NULL, NULL, '1539', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2479, '2025-01-31 21:44:00', 2095, NULL, NULL, '1540', NULL, 'bank', '', '', '', '', '', 'Visa', '35500.0000', NULL, 13, 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 (2480, '2025-02-04 21:46:00', 2095, NULL, NULL, '1541', NULL, 'bank', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2481, '2025-03-05 21:47:00', 2095, NULL, NULL, '1542', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2482, '2025-03-06 21:48:00', 1796, NULL, NULL, '1543', NULL, 'bank', '', '', '', '', '', 'Visa', '30000.0000', NULL, 13, 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 (2483, '2025-03-07 16:28:00', 2097, NULL, NULL, '1544', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2484, '2025-03-07 16:35:00', 2098, NULL, NULL, '1545', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2485, '2025-03-07 16:35:00', 2099, NULL, NULL, '1546', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2486, '2025-03-07 16:37:00', 2100, NULL, NULL, '1547', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2487, '2025-03-07 16:38:00', 2101, NULL, NULL, '1548', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2488, '2025-03-07 16:52:00', 2102, NULL, NULL, '1549', NULL, 'bank', '', '', '', '', '', 'Visa', '13300.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2489, '2025-03-07 16:53:00', 2103, NULL, NULL, '1550', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2490, '2025-03-07 16:55:00', 2104, NULL, NULL, '1551', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2491, '2025-03-07 16:57:00', 2105, NULL, NULL, '1552', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2492, '2025-03-07 16:59:00', 2075, NULL, NULL, '1553', NULL, 'bank', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2493, '2025-03-07 17:08:00', 2059, NULL, NULL, '1554', NULL, 'bank', '', '', '', '', '', 'Visa', '4100.0000', NULL, 13, 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 (2494, '2025-03-07 17:09:00', 1808, NULL, NULL, '1555', NULL, 'bank', '', '', '', '', '', 'Visa', '19500.0000', NULL, 13, 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 (2495, '2025-03-07 17:49:00', 2106, NULL, NULL, '1556', NULL, 'bank', '', '', '', '', '', 'Visa', '4800.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2496, '2025-03-05 17:56:00', 2107, NULL, NULL, '1557', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2497, '2025-01-28 17:59:00', 2108, NULL, NULL, '1558', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, NULL, 'received', '<p>paid by rosemary magondu</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2498, '2025-03-05 18:00:00', 2108, NULL, NULL, '1559', NULL, 'bank', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2499, '2025-03-05 18:06:00', 1715, NULL, NULL, '1560', NULL, 'bank', '', '', '', '', '', 'Visa', '104.0000', NULL, 13, 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 (2500, '2025-03-05 18:06:00', 2109, NULL, NULL, '1561', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2501, '2025-03-07 18:11:00', 2110, NULL, NULL, '1562', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2502, '2025-03-06 18:21:00', 2111, NULL, NULL, '1563', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2503, '2025-03-07 18:24:00', 2112, NULL, NULL, '1564', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2504, '2025-03-07 18:29:00', 2113, NULL, NULL, '1565', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4900.0000', NULL, 13, 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 (2505, '2025-03-10 09:34:00', 2051, NULL, NULL, '1566', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, NULL, 'received', '<p>paid by esther miano</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2506, '2025-03-10 09:35:00', 2051, NULL, NULL, '1567', NULL, 'bank', '', '', '', '', '', 'Visa', '4900.0000', NULL, 13, 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 (2507, '2025-03-10 09:36:00', 1916, NULL, NULL, '1568', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2508, '2025-03-10 09:43:00', 1867, NULL, NULL, '1569', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2509, '2025-02-03 09:47:00', 1867, NULL, NULL, '1570', NULL, 'bank', '', '', '', '', '', 'Visa', '50000.0000', NULL, 13, 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 (2510, '2025-03-10 09:56:00', 1795, NULL, NULL, '1571', NULL, 'bank', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, NULL, 'received', '<p>was paid my moses muriithi murimi ......paid 3600 by bank 200 was in</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2511, '2025-03-10 10:00:00', 2006, NULL, NULL, '1572', NULL, 'bank', '', '', '', '', '', 'Visa', '24800.0000', NULL, 13, 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 (2512, '2025-03-10 10:01:00', 2042, NULL, NULL, '1573', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2513, '2025-03-10 10:02:00', 2114, NULL, NULL, '1574', NULL, 'bank', '', '', '', '', '', 'Visa', '2100.0000', NULL, 13, 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 (2514, '2025-03-10 10:04:00', 2115, NULL, NULL, '1575', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2515, '2025-03-10 10:07:00', 2116, NULL, NULL, '1576', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2516, '2025-03-10 10:19:00', 1806, NULL, NULL, '1577', NULL, 'bank', '', '', '', '', '', 'Visa', '100000.0000', NULL, 13, 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 (2517, '2025-03-10 10:20:00', 1796, NULL, NULL, '1578', NULL, 'bank', '', '', '', '', '', 'Visa', '19300.0000', NULL, 13, 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 (2518, '2025-03-10 10:21:00', 1843, NULL, NULL, '1579', NULL, 'bank', '', '', '', '', '', 'Visa', '6300.0000', NULL, 13, 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 (2519, '2025-03-10 10:23:00', 2117, NULL, NULL, '1580', NULL, 'bank', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (2520, '2025-03-10 10:24:00', 1817, NULL, NULL, '1581', NULL, 'bank', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, NULL, 'received', '<p>paid by david ndungu </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2521, '2025-03-10 10:25:00', 2018, NULL, NULL, '1582', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2522, '2025-03-10 10:28:00', 2015, NULL, NULL, '1583', NULL, 'bank', '', '', '', '', '', 'Visa', '4700.0000', NULL, 13, 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 (2525, '2025-03-11 10:30:00', 2119, NULL, NULL, '1586', NULL, 'bank', '', '', '', '', '', 'Visa', '28600.0000', NULL, 13, 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 (2526, '2025-03-10 10:31:00', 2039, NULL, NULL, '1587', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2527, '2025-03-10 10:33:00', 2120, NULL, NULL, '1588', NULL, 'bank', '', '', '', '', '', 'Visa', '1950.0000', NULL, 13, 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 (2528, '2025-03-10 10:39:00', 2121, NULL, NULL, '1589', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2529, '2025-03-10 10:41:00', 2122, NULL, NULL, '1590', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2530, '2025-03-10 10:42:00', 2123, NULL, NULL, '1591', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2531, '2025-03-10 10:47:00', 2125, NULL, NULL, '1592', NULL, 'bank', '', '', '', '', '', 'Visa', '650.0000', NULL, 13, 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 (2533, '2025-02-19 10:59:00', 2126, NULL, NULL, '1594', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2534, '2025-03-10 11:02:00', 2126, NULL, NULL, '1595', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2535, '2025-03-10 11:05:00', 2127, NULL, NULL, '1596', NULL, 'bank', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2536, '2025-02-28 11:06:00', 2128, NULL, NULL, '1597', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2537, '2025-03-04 11:08:00', 2128, NULL, NULL, '1598', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2538, '2025-03-10 11:08:00', 2128, NULL, NULL, '1599', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2539, '2025-03-10 11:10:00', 1991, NULL, NULL, '1600', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2540, '2025-03-10 11:10:00', 1714, NULL, NULL, '1601', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '20000.0000', NULL, 13, 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 (2541, '2025-03-10 11:15:00', 2058, NULL, NULL, '1602', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2542, '2025-03-10 11:15:00', 2129, NULL, NULL, '1603', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2543, '2025-03-11 11:17:00', 1905, NULL, NULL, '1604', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '40000.0000', NULL, 13, 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 (2544, '2025-03-11 11:18:00', 1836, NULL, NULL, '1605', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2545, '2025-03-07 11:37:00', 2130, NULL, NULL, '1606', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2546, '2025-03-11 11:39:00', 2130, NULL, NULL, '1607', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, NULL, 'received', '<p>paid by wilson mubena</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2547, '2025-03-10 11:45:00', 1749, NULL, NULL, '1608', NULL, 'bank', '', '', '', '', '', 'Visa', '4650.0000', NULL, 13, 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 (2548, '2025-03-10 11:47:00', 1750, NULL, NULL, '1609', NULL, 'bank', '', '', '', '', '', 'Visa', '4650.0000', NULL, 13, 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 (2549, '2025-03-10 11:48:00', 2022, NULL, NULL, '1610', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, NULL, 'received', '<p>paid by julius miano</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2550, '2025-03-10 11:49:00', 2037, NULL, NULL, '1611', NULL, 'bank', '', '', '', '', '', 'Visa', '3700.0000', NULL, 13, 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 (2551, '2025-03-10 11:53:00', 2040, NULL, NULL, '1612', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid by Tabitha wandia</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2552, '2025-03-10 11:55:00', 2040, NULL, NULL, '1613', NULL, 'bank', '', '', '', '', '', 'Visa', '1100.0000', NULL, 13, 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 (2553, '2025-03-11 12:04:00', 1747, NULL, NULL, '1614', NULL, 'bank', '', '', '', '', '', 'Visa', '950.0000', NULL, 13, 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 (2554, '2025-03-10 12:18:00', 2026, NULL, NULL, '1615', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, NULL, 'received', '<p>paid by michael karani</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2555, '2025-03-10 12:18:00', 2131, NULL, NULL, '1616', NULL, 'bank', '', '', '', '', '', 'Visa', '960.5000', NULL, 13, 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 (2556, '2025-03-10 12:24:00', 2010, NULL, NULL, '1617', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '<p>paid by samson njiru</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2557, '2025-02-01 12:26:00', 2132, NULL, NULL, '1618', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2558, '2025-03-10 12:27:00', 2132, NULL, NULL, '1619', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2559, '2025-02-20 12:28:00', 2132, NULL, NULL, '1620', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2560, '2025-02-07 12:28:00', 2132, NULL, NULL, '1621', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2561, '2025-03-10 12:31:00', 2082, NULL, NULL, '1622', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2562, '2025-03-10 12:35:00', 1710, NULL, NULL, '1623', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2700.0000', NULL, 13, 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 (2563, '2025-03-08 15:41:00', 2133, NULL, NULL, '1624', NULL, 'bank', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2564, '2025-03-08 15:43:00', 2134, NULL, NULL, '1625', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2565, '2025-03-08 15:49:00', 2048, NULL, NULL, '1626', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2566, '2025-03-08 15:51:00', 1866, NULL, NULL, '1627', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2567, '2025-03-08 15:53:00', 1907, NULL, NULL, '1628', NULL, 'bank', '', '', '', '', '', 'Visa', '25000.0000', NULL, 13, 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 (2568, '2025-03-08 15:53:00', 2032, NULL, NULL, '1629', NULL, 'bank', '', '', '', '', '', 'Visa', '9000.0000', NULL, 13, 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 (2569, '2025-03-08 15:54:00', 1702, NULL, NULL, '1630', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2570, '2025-03-08 15:55:00', 2068, NULL, NULL, '1631', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2571, '2025-03-08 15:58:00', 2067, NULL, NULL, '1632', NULL, 'bank', '', '', '', '', '', 'Visa', '298.5000', NULL, 13, 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 (2572, '2025-03-08 16:00:00', 2136, NULL, NULL, '1633', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2573, '2025-03-11 16:24:00', 2137, NULL, NULL, '1634', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2574, '2025-03-11 16:27:00', 2138, NULL, NULL, '1635', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2575, '2025-02-20 16:32:00', 1716, NULL, NULL, '1636', NULL, 'cash', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2576, '2025-03-11 16:32:00', 1716, NULL, NULL, '1637', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2577, '2025-03-11 16:34:00', 2140, NULL, NULL, '1638', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2578, '2025-03-11 16:37:00', 2075, NULL, NULL, '1639', NULL, 'bank', '', '', '', '', '', 'Visa', '24000.0000', NULL, 13, 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 (2579, '2025-03-11 16:38:00', 1984, NULL, NULL, '1640', NULL, 'bank', '', '', '', '', '', 'Visa', '9000.0000', NULL, 13, 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 (2580, '2025-03-11 16:38:00', 1764, NULL, NULL, '1641', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2581, '2025-03-11 16:39:00', 1754, NULL, NULL, '1642', NULL, 'bank', '', '', '', '', '', 'Visa', '7475.0000', NULL, 13, 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 (2582, '2025-03-11 16:46:00', 2141, NULL, NULL, '1643', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2583, '2025-03-11 16:49:00', 1792, NULL, NULL, '1644', NULL, 'bank', '', '', '', '', '', 'Visa', '1950.0000', NULL, 13, NULL, 'received', '<p>paid by ibrahim wachira</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2584, '2025-03-11 16:50:00', 2142, NULL, NULL, '1645', NULL, 'bank', '', '', '', '', '', 'Visa', '460.0000', NULL, 13, 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 (2585, '2025-03-11 16:54:00', 2143, NULL, NULL, '1646', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2586, '2025-03-11 17:02:00', 1752, NULL, NULL, '1647', NULL, 'bank', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, NULL, 'received', '<p>paid by paul kariuki</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2587, '2025-03-11 17:03:00', 1705, NULL, NULL, '1648', NULL, 'bank', '', '', '', '', '', 'Visa', '36200.0000', NULL, 13, 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 (2588, '2025-03-11 12:06:00', 2134, NULL, NULL, '1649', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2589, '2025-03-11 09:27:00', 2144, NULL, NULL, '1650', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2590, '2025-03-01 21:02:00', 2145, NULL, NULL, '1651', NULL, 'bank', '', '', '', '', '', 'Visa', '3200.0000', NULL, 13, 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 (2591, '2025-03-12 10:47:00', 2145, NULL, NULL, '1652', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2592, '2025-03-12 10:54:00', 2137, NULL, NULL, '1653', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2593, '2025-03-12 10:56:00', 2014, NULL, NULL, '1654', NULL, 'bank', '', '', '', '', '', 'Visa', '19000.0000', NULL, 13, 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 (2594, '2025-03-12 10:57:00', 2014, NULL, NULL, '1655', NULL, 'bank', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, NULL, 'received', '<p>paid by nazarius</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2595, '2025-03-12 10:58:00', 1714, NULL, NULL, '1656', NULL, 'bank', '', '', '', '', '', 'Visa', '18000.0000', NULL, 13, 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 (2596, '2025-03-12 10:59:00', 2081, NULL, NULL, '1657', NULL, 'bank', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2597, '2025-03-12 11:05:00', 2149, NULL, NULL, '1658', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2598, '2025-03-07 11:37:00', 2154, NULL, NULL, '1659', NULL, 'CC', '', '', '', '', '', 'Visa', '950.0000', NULL, 13, 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 (2599, '2025-03-13 11:59:00', 2155, NULL, NULL, '1660', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2600, '2025-03-06 12:14:00', 2156, NULL, NULL, '1661', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2601, '2025-03-14 10:07:00', 1725, NULL, NULL, '1662', NULL, 'bank', '', '', '', '', '', 'Visa', '15500.0000', NULL, 13, 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 (2602, '2025-03-13 10:34:00', 2158, NULL, NULL, '1663', NULL, 'bank', '', '', '', '', '', 'Visa', '3650.0000', NULL, 13, 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 (2603, '2025-03-13 10:38:00', 2159, NULL, NULL, '1664', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2604, '2025-03-13 10:41:00', 2160, NULL, NULL, '1665', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2605, '2025-03-13 10:42:00', 2161, NULL, NULL, '1666', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2606, '2025-03-13 10:01:00', 2163, NULL, NULL, '1667', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2607, '2025-03-13 10:03:00', 2164, NULL, NULL, '1668', NULL, 'bank', '', '', '', '', '', 'Visa', '43700.0000', NULL, 13, 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 (2608, '2025-03-13 10:05:00', 2165, NULL, NULL, '1669', NULL, 'bank', '', '', '', '', '', 'Visa', '7200.0000', NULL, 13, 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 (2609, '2025-03-13 10:08:00', 1824, NULL, NULL, '1670', NULL, 'bank', '', '', '', '', '', 'Visa', '10100.0000', NULL, 13, 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 (2610, '2025-03-14 10:10:00', 2081, NULL, NULL, '1671', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2611, '2025-03-14 10:14:00', 1819, NULL, NULL, '1672', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2612, '2025-03-14 10:16:00', 1776, NULL, NULL, '1673', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2613, '2025-03-13 10:21:00', 2166, NULL, NULL, '1674', NULL, 'bank', '', '', '', '', '', 'Visa', '250.0000', NULL, 13, 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 (2614, '2025-03-13 10:27:00', 2167, NULL, NULL, '1675', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2615, '2025-03-14 10:29:00', 1905, NULL, NULL, '1676', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2616, '2025-03-14 10:29:00', 1802, NULL, NULL, '1677', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '61500.0000', NULL, 13, 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 (2617, '2025-03-14 10:31:00', 2048, NULL, NULL, '1678', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2618, '2025-03-15 10:32:00', 1991, NULL, NULL, '1679', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2619, '2025-03-15 10:33:00', 1988, NULL, NULL, '1680', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2620, '2025-03-13 10:36:00', 1842, NULL, NULL, '1681', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, 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 (2621, '2025-03-13 10:44:00', 1705, NULL, NULL, '1682', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '27600.0000', NULL, 13, 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 (2622, '2025-03-03 10:55:00', 1842, NULL, NULL, '1683', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2623, '2025-03-03 10:55:00', 1842, NULL, NULL, '1684', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2624, '2025-03-18 10:57:00', 1842, NULL, NULL, '1685', NULL, 'bank', '', '', '', '', '', 'Visa', '5600.0000', NULL, 13, 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 (2625, '2025-03-14 11:00:00', 2168, NULL, NULL, '1686', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2626, '2025-03-13 11:01:00', 2169, NULL, NULL, '1687', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2627, '2025-03-14 11:04:00', 2171, NULL, NULL, '1688', NULL, 'bank', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2628, '2025-03-14 11:08:00', 1773, NULL, NULL, '1689', NULL, 'bank', '', '', '', '', '', 'Visa', '14200.0000', NULL, 13, 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 (2629, '2025-03-14 11:09:00', 2172, NULL, NULL, '1690', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2631, '2025-03-14 11:14:00', 2174, NULL, NULL, '1692', NULL, 'bank', '', '', '', '', '', 'Visa', '39.2000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2632, '2025-03-14 11:15:00', 1820, NULL, NULL, '1693', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2634, '2025-03-14 11:19:00', 2176, NULL, NULL, '1695', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2635, '2025-03-14 11:21:00', 2177, NULL, NULL, '1696', NULL, 'bank', '', '', '', '', '', 'Visa', '109.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2636, '2025-03-14 11:25:00', 2178, NULL, NULL, '1697', NULL, 'bank', '', '', '', '', '', 'Visa', '13650.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2637, '2025-03-14 11:28:00', 2178, NULL, NULL, '1698', NULL, 'bank', '', '', '', '', '', 'Visa', '451.0000', NULL, 13, 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 (2638, '2025-03-15 11:32:00', 2179, NULL, NULL, '1699', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2639, '2025-03-15 11:38:00', 2180, NULL, NULL, '1700', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2640, '2025-03-15 11:44:00', 2181, NULL, NULL, '1701', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2641, '2025-03-15 11:47:00', 2182, NULL, NULL, '1702', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2642, '2025-03-17 11:51:00', 2183, NULL, NULL, '1703', NULL, 'bank', '', '', '', '', '', 'Visa', '7800.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2643, '2025-03-17 11:52:00', 2184, NULL, NULL, '1704', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2644, '2025-03-17 11:55:00', 1861, NULL, NULL, '1705', NULL, 'bank', '', '', '', '', '', 'Visa', '4700.0000', NULL, 13, 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 (2645, '2025-03-17 11:57:00', 1915, NULL, NULL, '1706', NULL, 'bank', '', '', '', '', '', 'Visa', '42800.0000', NULL, 13, NULL, 'received', '<p>paid by john muchwe</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2646, '2025-03-17 11:58:00', 2038, NULL, NULL, '1707', NULL, 'bank', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2647, '2025-03-17 11:59:00', 1697, NULL, NULL, '1708', NULL, 'bank', '', '', '', '', '', 'Visa', '5300.0000', NULL, 13, 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 (2648, '2025-03-17 12:04:00', 1990, NULL, NULL, '1709', NULL, 'bank', '', '', '', '', '', 'Visa', '6600.0000', NULL, 13, 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 (2649, '2025-03-17 12:05:00', 2185, NULL, NULL, '1710', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2650, '2025-03-01 12:06:00', 2029, NULL, NULL, '1711', NULL, 'Cheque', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2651, '2025-03-17 12:07:00', 2029, NULL, NULL, '1712', NULL, 'bank', '', '', '', '', '', 'Visa', '2100.0000', NULL, 13, 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 (2652, '2025-03-17 12:08:00', 2186, NULL, NULL, '1713', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2653, '2025-03-17 12:09:00', 1886, NULL, NULL, '1714', NULL, 'bank', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2654, '2025-03-17 12:09:00', 2105, NULL, NULL, '1715', NULL, 'bank', '', '', '', '', '', 'Visa', '13000.0000', NULL, 13, 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 (2655, '2025-03-17 12:10:00', 2187, NULL, NULL, '1716', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2656, '2025-03-17 12:19:00', 2188, NULL, NULL, '1717', NULL, 'bank', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2657, '2025-03-17 13:09:00', 2189, NULL, NULL, '1718', NULL, 'bank', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2658, '2025-03-17 13:17:00', 2190, NULL, NULL, '1719', NULL, 'bank', '', '', '', '', '', 'Visa', '2850.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2659, '2025-03-17 13:19:00', 2191, NULL, NULL, '1720', NULL, 'bank', '', '', '', '', '', 'Visa', '392.5000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2660, '2025-03-17 13:24:00', 2192, NULL, NULL, '1721', NULL, 'bank', '', '', '', '', '', 'Visa', '5250.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2661, '2025-02-19 13:30:00', 2193, NULL, NULL, '1722', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2662, '2025-03-17 13:31:00', 2193, NULL, NULL, '1723', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10200.0000', NULL, 13, 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 (2663, '2025-03-17 13:32:00', 2194, NULL, NULL, '1724', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2664, '2025-03-17 13:36:00', 2195, NULL, NULL, '1725', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, NULL, 'received', '<p>in from previous booking</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2665, '2025-03-18 14:19:00', 2196, NULL, NULL, '1726', NULL, 'bank', '', '', '', '', '', 'Visa', '5100.0000', NULL, 13, 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 (2666, '2025-03-18 14:20:00', 2197, NULL, NULL, '1727', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2667, '2025-03-18 14:22:00', 2198, NULL, NULL, '1728', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2668, '2025-03-18 14:22:00', 2199, NULL, NULL, '1729', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, 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 (2669, '2025-03-18 14:24:00', 2200, NULL, NULL, '1730', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2670, '2025-03-18 14:27:00', 2201, NULL, NULL, '1731', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2671, '2025-03-18 14:29:00', 2202, NULL, NULL, '1732', NULL, 'bank', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2672, '2025-03-18 14:31:00', 2203, NULL, NULL, '1733', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2673, '2025-03-18 14:33:00', 2204, NULL, NULL, '1734', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2674, '2025-03-18 14:35:00', 2205, NULL, NULL, '1735', NULL, 'bank', '', '', '', '', '', 'Visa', '98.8000', NULL, 13, 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 (2675, '2025-03-18 14:37:00', 1907, NULL, NULL, '1736', NULL, 'bank', '', '', '', '', '', 'Visa', '100000.0000', NULL, 13, 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 (2676, '2025-03-19 14:37:00', 1907, NULL, NULL, '1737', NULL, 'bank', '', '', '', '', '', 'Visa', '150000.0000', NULL, 13, 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 (2677, '2025-03-18 14:39:00', 1918, NULL, NULL, '1738', NULL, 'bank', '', '', '', '', '', 'Visa', '8400.0000', NULL, 13, 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 (2678, '2025-03-18 14:41:00', 2206, NULL, NULL, '1739', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2679, '2025-03-18 14:43:00', 1916, NULL, NULL, '1740', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2680, '2025-03-18 14:45:00', 2207, NULL, NULL, '1741', NULL, 'bank', '', '', '', '', '', 'Visa', '1700.0000', NULL, 13, 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 (2681, '2025-03-18 14:47:00', 1708, NULL, NULL, '1742', NULL, 'bank', '', '', '', '', '', 'Visa', '15100.0000', NULL, 13, 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 (2682, '2025-03-18 14:47:00', 2208, NULL, NULL, '1743', NULL, 'bank', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, 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 (2683, '2025-03-18 14:58:00', 2209, NULL, NULL, '1744', NULL, 'bank', '', '', '', '', '', 'Visa', '13200.0000', NULL, 13, 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 (2684, '2025-03-18 15:00:00', 1947, NULL, NULL, '1745', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2685, '2025-03-18 15:23:00', 1775, NULL, NULL, '1746', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2686, '2025-03-19 13:50:00', 2211, NULL, NULL, '1747', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2687, '2025-03-19 13:52:00', 2212, NULL, NULL, '1748', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2688, '2025-03-19 14:49:00', 2213, NULL, NULL, '1749', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2689, '2025-03-26 14:53:00', 2212, NULL, NULL, '1750', NULL, 'bank', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2690, '2025-03-19 08:49:00', 2215, NULL, NULL, '1751', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2691, '2025-03-25 08:51:00', 2215, NULL, NULL, '1752', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2692, '2025-03-19 08:51:00', 2216, NULL, NULL, '1753', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2693, '2025-03-25 08:56:00', 2216, NULL, NULL, '1754', NULL, 'bank', '', '', '', '', '', 'Visa', '2200.0000', NULL, 13, 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 (2694, '2025-03-19 08:57:00', 2217, NULL, NULL, '1755', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2695, '2025-03-25 09:01:00', 2217, NULL, NULL, '1756', NULL, 'bank', '', '', '', '', '', 'Visa', '300.0000', NULL, 13, 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 (2696, '2025-03-20 09:04:00', 2219, NULL, NULL, '1757', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2697, '2025-03-26 09:08:00', 2219, NULL, NULL, '1758', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2698, '2025-03-20 09:08:00', 2220, NULL, NULL, '1759', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2699, '2025-03-20 09:09:00', 2222, NULL, NULL, '1760', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1950.0000', NULL, 13, 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 (2700, '2025-03-20 09:10:00', 2223, NULL, NULL, '1761', NULL, 'bank', '', '', '', '', '', 'Visa', '1100.0000', NULL, 13, 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 (2701, '2025-03-20 09:16:00', 2224, NULL, NULL, '1762', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2702, '2025-03-20 09:23:00', 2225, NULL, NULL, '1763', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2703, '2025-03-24 09:25:00', 2225, NULL, NULL, '1764', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2704, '2025-03-20 09:25:00', 2226, NULL, NULL, '1765', NULL, 'bank', '', '', '', '', '', 'Visa', '15000.0000', NULL, 13, 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 (2705, '2025-03-20 09:27:00', 2227, NULL, NULL, '1766', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2706, '2025-03-20 09:29:00', 2228, NULL, NULL, '1767', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2707, '2025-03-20 09:32:00', 2229, NULL, NULL, '1768', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2708, '2025-03-21 09:36:00', 2230, NULL, NULL, '1769', NULL, 'bank', '', '', '', '', '', 'Visa', '900.0000', NULL, 13, 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 (2709, '2025-03-21 09:37:00', 2231, NULL, NULL, '1770', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2710, '2025-03-25 09:40:00', 2231, NULL, NULL, '1771', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2711, '2025-03-21 09:44:00', 2233, NULL, NULL, '1772', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2712, '2025-03-21 09:45:00', 2234, NULL, NULL, '1773', NULL, 'bank', '', '', '', '', '', 'Visa', '5500.0000', NULL, 13, 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 (2713, '2025-03-19 09:47:00', 2235, NULL, NULL, '1774', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2714, '2025-03-21 09:51:00', 2235, NULL, NULL, '1775', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2715, '2025-03-21 09:51:00', 2236, NULL, NULL, '1776', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2716, '2025-03-21 09:59:00', 2237, NULL, NULL, '1777', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2717, '2025-03-21 10:02:00', 2238, NULL, NULL, '1778', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2718, '2025-03-22 10:29:00', 2239, NULL, NULL, '1779', NULL, 'bank', '', '', '', '', '', 'Visa', '900.0000', NULL, 13, 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 (2719, '2025-03-21 11:04:00', 2242, NULL, NULL, '1780', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2720, '2025-03-22 11:09:00', 2243, NULL, NULL, '1781', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2721, '2025-03-24 11:12:00', 2244, NULL, NULL, '1782', NULL, 'bank', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2722, '2025-03-25 11:14:00', 2244, NULL, NULL, '1783', NULL, 'bank', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (2723, '2025-03-24 11:15:00', 2245, NULL, NULL, '1784', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2724, '2025-03-24 11:17:00', 2246, NULL, NULL, '1785', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2725, '2025-03-24 11:51:00', 2248, NULL, NULL, '1786', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2726, '2025-03-24 12:05:00', 2249, NULL, NULL, '1787', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2727, '2025-03-26 12:13:00', 2249, NULL, NULL, '1788', NULL, 'bank', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2728, '2025-03-26 12:14:00', 2249, NULL, NULL, '1789', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid by harrison njiru</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2729, '2025-03-25 12:15:00', 2251, NULL, NULL, '1790', NULL, 'bank', '', '', '', '', '', 'Visa', '16800.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2730, '2025-03-24 12:20:00', 2252, NULL, NULL, '1791', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2731, '2025-03-24 12:22:00', 2253, NULL, NULL, '1792', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2732, '2025-03-24 12:24:00', 2254, NULL, NULL, '1793', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2733, '2025-03-25 12:30:00', 2256, NULL, NULL, '1794', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2734, '2025-03-25 12:32:00', 2257, NULL, NULL, '1795', NULL, 'bank', '', '', '', '', '', 'Visa', '13000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2735, '2025-03-25 12:33:00', 2258, NULL, NULL, '1796', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2736, '2025-03-25 12:37:00', 2260, NULL, NULL, '1797', NULL, 'bank', '', '', '', '', '', 'Visa', '30000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2737, '2025-03-14 12:39:00', 2261, NULL, NULL, '1798', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, NULL, 'received', '<p> collected by and paid by susan wangui </p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2738, '2025-03-27 12:41:00', 2261, NULL, NULL, '1799', NULL, 'bank', '', '', '', '', '', 'Visa', '53500.0000', NULL, 13, 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 (2739, '2025-03-26 12:44:00', 2133, NULL, NULL, '1800', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2740, '2025-03-08 12:45:00', 2135, NULL, NULL, '1801', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2741, '2025-03-25 12:46:00', 2135, NULL, NULL, '1802', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '6800.0000', NULL, 13, 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 (2742, '2025-03-24 12:53:00', 2137, NULL, NULL, '1803', NULL, 'bank', '', '', '', '', '', 'Visa', '7000.0000', NULL, 13, 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 (2743, '2025-03-25 13:00:00', 2081, NULL, NULL, '1804', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2744, '2025-03-25 13:01:00', 2080, NULL, NULL, '1805', NULL, 'bank', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2745, '2025-03-26 13:04:00', 2079, NULL, NULL, '1806', NULL, 'bank', '', '', '', '', '', 'Visa', '3700.0000', NULL, 13, 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 (2746, '2025-03-26 13:05:00', 2098, NULL, NULL, '1807', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2748, '2025-03-25 13:08:00', 2099, NULL, NULL, '1809', NULL, 'bank', '', '', '', '', '', 'Visa', '900.0000', NULL, 13, 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 (2749, '2025-03-27 13:08:00', 2100, NULL, NULL, '1810', NULL, 'bank', '', '', '', '', '', 'Visa', '4600.0000', NULL, 13, 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 (2750, '2025-03-25 13:11:00', 2103, NULL, NULL, '1811', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2751, '2025-03-27 13:21:00', 2105, NULL, NULL, '1812', NULL, 'bank', '', '', '', '', '', 'Visa', '54500.0000', NULL, 13, 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 (2752, '2025-03-27 14:00:00', 1907, NULL, NULL, '1813', NULL, 'bank', '', '', '', '', '', 'Visa', '22800.0000', NULL, 13, 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 (2753, '2025-03-05 20:47:00', 1793, NULL, NULL, '1814', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2755, '2025-03-05 21:03:00', 1810, NULL, NULL, '1816', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (2756, '2025-03-26 08:38:00', 2265, NULL, NULL, '1817', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2757, '2025-03-26 08:39:00', 2266, NULL, NULL, '1818', NULL, 'bank', '', '', '', '', '', 'Visa', '2950.0000', NULL, 13, 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 (2758, '2025-03-26 08:40:00', 2267, NULL, NULL, '1819', NULL, 'bank', '', '', '', '', '', 'Visa', '26000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2759, '2025-03-28 08:43:00', 2270, NULL, NULL, '1820', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2760, '2025-03-28 09:04:00', 2271, NULL, NULL, '1821', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2761, '2025-03-28 10:55:00', 2272, NULL, NULL, '1822', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2762, '2025-03-28 10:59:00', 2273, NULL, NULL, '1823', NULL, 'bank', '', '', '', '', '', 'Visa', '2900.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2763, '2025-03-29 11:02:00', 2274, NULL, NULL, '1824', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2764, '2025-03-29 11:03:00', 2275, NULL, NULL, '1825', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2765, '2025-03-29 11:04:00', 2276, NULL, NULL, '1826', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2766, '2025-03-29 11:06:00', 2277, NULL, NULL, '1827', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2767, '2025-03-29 11:10:00', 1969, NULL, NULL, '1828', NULL, 'bank', '', '', '', '', '', 'Visa', '58500.0000', NULL, 13, 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 (2768, '2025-03-29 11:11:00', 2087, NULL, NULL, '1829', NULL, 'bank', '', '', '', '', '', 'Visa', '11400.0000', NULL, 13, 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 (2769, '2025-03-28 11:27:00', 2162, NULL, NULL, '1830', NULL, 'bank', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2770, '2025-03-28 11:27:00', 2278, NULL, NULL, '1831', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2771, '2025-03-28 11:29:00', 2279, NULL, NULL, '1832', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, NULL, 'received', '<p>paid by joseph john</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2772, '2025-03-28 11:35:00', 2280, NULL, NULL, '1833', NULL, 'bank', '', '', '', '', '', 'Visa', '21600.0000', NULL, 13, NULL, 'received', '<p>paid by sawerio muchiri</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2773, '2025-03-28 11:37:00', 2049, NULL, NULL, '1834', NULL, 'bank', '', '', '', '', '', 'Visa', '8500.0000', NULL, 13, 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 (2774, '2025-03-27 11:37:00', 1948, NULL, NULL, '1835', NULL, 'bank', '', '', '', '', '', 'Visa', '23000.0000', NULL, 13, 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 (2775, '2025-03-27 11:38:00', 2281, NULL, NULL, '1836', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, NULL, 'received', '<p>paid by sawerio muchiri</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2776, '2025-03-24 11:40:00', 2245, NULL, NULL, '1837', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2777, '2025-03-18 13:05:00', 1991, NULL, NULL, '1838', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2778, '2025-03-18 13:06:00', 1988, NULL, NULL, '1839', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2779, '2025-03-19 13:10:00', 2036, NULL, NULL, '1840', NULL, 'bank', '', '', '', '', '', 'Visa', '100000.0000', NULL, 13, 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 (2780, '2025-03-19 13:13:00', 2282, NULL, NULL, '1841', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2781, '2025-03-19 13:14:00', 2114, NULL, NULL, '1842', NULL, 'bank', '', '', '', '', '', 'Visa', '1150.0000', NULL, 13, 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 (2782, '2025-03-19 13:15:00', 2028, NULL, NULL, '1843', NULL, 'bank', '', '', '', '', '', 'Visa', '37500.0000', NULL, 13, 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 (2783, '2025-03-19 13:26:00', 2283, NULL, NULL, '1844', NULL, 'bank', '', '', '', '', '', 'Visa', '325.0000', NULL, 13, 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 (2784, '2025-03-19 13:35:00', 2284, NULL, NULL, '1845', NULL, 'bank', '', '', '', '', '', 'Visa', '40.0000', NULL, 13, 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 (2785, '2025-03-19 13:40:00', 2285, NULL, NULL, '1846', NULL, 'bank', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2786, '2025-03-19 13:42:00', 1937, NULL, NULL, '1847', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2787, '2025-03-19 13:43:00', 1996, NULL, NULL, '1848', NULL, 'bank', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, 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 (2788, '2025-03-19 13:44:00', 2286, NULL, NULL, '1849', NULL, 'bank', '', '', '', '', '', 'Visa', '8000.0000', NULL, 13, 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 (2789, '2025-03-19 13:45:00', 1988, NULL, NULL, '1850', NULL, 'bank', '', '', '', '', '', 'Visa', '3400.0000', NULL, 13, 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 (2790, '2025-03-19 13:46:00', 2287, NULL, NULL, '1851', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, 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 (2791, '2025-03-19 13:48:00', 1738, NULL, NULL, '1852', NULL, 'bank', '', '', '', '', '', 'Visa', '500.0000', NULL, 13, 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 (2792, '2025-03-19 13:49:00', 2288, NULL, NULL, '1853', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2793, '2025-03-19 13:51:00', 2289, NULL, NULL, '1854', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2794, '2025-03-19 13:52:00', 2290, NULL, NULL, '1855', NULL, 'bank', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2795, '2025-03-19 13:54:00', 2291, NULL, NULL, '1856', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2796, '0000-00-00 00:00:00', 2132, NULL, NULL, '1857', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2797, '2025-03-20 13:59:00', 2046, NULL, NULL, '1858', NULL, 'bank', '', '', '', '', '', 'Visa', '1800.0000', NULL, 13, 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 (2798, '2025-03-20 14:00:00', 2292, NULL, NULL, '1859', NULL, 'bank', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2799, '2025-03-20 14:00:00', 2293, NULL, NULL, '1860', NULL, 'bank', '', '', '', '', '', 'Visa', '25000.0000', NULL, 13, 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 (2800, '2025-03-20 14:05:00', 2294, NULL, NULL, '1861', NULL, 'bank', '', '', '', '', '', 'Visa', '950.0000', NULL, 13, 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 (2801, '2025-03-20 14:07:00', 2295, NULL, NULL, '1862', NULL, 'bank', '', '', '', '', '', 'Visa', '48000.0000', NULL, 13, 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 (2802, '2025-03-19 14:11:00', 1706, NULL, NULL, '1863', NULL, 'bank', '', '', '', '', '', 'Visa', '9425.0000', NULL, 13, 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 (2803, '2025-03-20 14:14:00', 2296, NULL, NULL, '1864', NULL, 'cash', '', '', '', '', '', 'Visa', '3200.0000', NULL, 13, 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 (2804, '2025-03-20 14:15:00', 2297, NULL, NULL, '1865', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2805, '0000-00-00 00:00:00', 2298, NULL, NULL, '1866', NULL, 'bank', '', '', '', '', '', 'Visa', '1200.0000', NULL, 13, 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 (2806, '2025-03-21 14:21:00', 1991, NULL, NULL, '1867', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2807, '2025-03-22 14:22:00', 1748, NULL, NULL, '1868', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2808, '2025-03-19 14:23:00', 2299, NULL, NULL, '1869', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2809, '2025-03-21 14:29:00', 2299, NULL, NULL, '1870', NULL, 'bank', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, 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 (2810, '2025-03-21 14:33:00', 2071, NULL, NULL, '1871', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2811, '2025-03-21 14:34:00', 2300, NULL, NULL, '1872', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2812, '2024-12-19 14:35:00', 2301, NULL, NULL, '1873', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2813, '2025-03-21 14:46:00', 2302, NULL, NULL, '1874', NULL, 'bank', '', '', '', '', '', 'Visa', '170.0000', NULL, 13, 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 (2814, '2025-03-21 14:54:00', 1916, NULL, NULL, '1875', NULL, 'bank', '', '', '', '', '', 'Visa', '5300.0000', NULL, 13, 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 (2815, '2025-03-21 14:54:00', 1907, NULL, NULL, '1876', NULL, 'bank', '', '', '', '', '', 'Visa', '22800.0000', NULL, 13, 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 (2816, '2025-03-21 14:55:00', 2303, NULL, NULL, '1877', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2817, '2025-03-21 15:03:00', 1779, NULL, NULL, '1878', NULL, 'bank', '', '', '', '', '', 'Visa', '25000.0000', NULL, 13, 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 (2818, '2025-03-21 15:04:00', 1970, NULL, NULL, '1879', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2819, '2025-03-21 15:05:00', 2304, NULL, NULL, '1880', NULL, 'bank', '', '', '', '', '', 'Visa', '2400.0000', NULL, 13, 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 (2820, '2025-02-20 15:09:00', 2305, NULL, NULL, '1881', NULL, 'cash', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2821, '2025-03-12 15:11:00', 2305, NULL, NULL, '1882', NULL, 'bank', '', '', '', '', '', 'Visa', '11000.0000', NULL, 13, 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 (2822, '2025-03-21 15:11:00', 2305, NULL, NULL, '1883', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2823, '2025-03-10 15:20:00', 1751, NULL, NULL, '1884', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2824, '2025-03-21 15:22:00', 1751, NULL, NULL, '1885', NULL, 'bank', '', '', '', '', '', 'Visa', '13525.0000', NULL, 13, 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 (2825, '2025-03-19 15:24:00', 1742, NULL, NULL, '1886', NULL, 'bank', '', '', '', '', '', 'Visa', '28150.0000', NULL, 13, 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 (2826, '2025-03-22 15:30:00', 1813, NULL, NULL, '1887', NULL, 'bank', '', '', '', '', '', 'Visa', '10800.0000', NULL, 13, 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 (2827, '2025-03-22 15:35:00', 2306, NULL, NULL, '1888', NULL, 'bank', '', '', '', '', '', 'Visa', '99.9600', NULL, 13, 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 (2828, '2025-03-22 15:38:00', 2307, NULL, NULL, '1889', NULL, 'bank', '', '', '', '', '', 'Visa', '199.5000', NULL, 13, 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 (2829, '2025-03-20 15:58:00', 2308, NULL, NULL, '1890', NULL, 'bank', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2830, '2025-03-19 16:02:00', 2309, NULL, NULL, '1891', NULL, 'bank', '', '', '', '', '', 'Visa', '15600.0000', NULL, 13, 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 (2831, '2025-03-24 08:23:00', 2310, NULL, NULL, '1892', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2832, '2025-03-24 08:26:00', 2048, NULL, NULL, '1893', NULL, 'bank', '', '', '', '', '', 'Visa', '2300.0000', NULL, 13, 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 (2833, '2025-03-24 08:31:00', 2085, NULL, NULL, '1894', NULL, 'bank', '', '', '', '', '', 'Visa', '18000.0000', NULL, 13, 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 (2834, '2025-03-24 08:44:00', 2311, NULL, NULL, '1895', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2835, '2025-03-24 08:49:00', 2312, NULL, NULL, '1896', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2836, '2025-03-24 08:53:00', 2313, NULL, NULL, '1897', NULL, 'bank', '', '', '', '', '', 'Visa', '89.0000', NULL, 13, 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 (2837, '2025-02-22 08:57:00', 2314, NULL, NULL, '1898', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2838, '2025-03-24 09:00:00', 2314, NULL, NULL, '1899', NULL, 'bank', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2839, '2025-03-24 09:02:00', 2315, NULL, NULL, '1900', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (2840, '2025-03-25 09:05:00', 2316, NULL, NULL, '1901', NULL, 'bank', '', '', '', '', '', 'Visa', '150.0000', NULL, 13, 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 (2841, '2025-03-25 09:11:00', 2317, NULL, NULL, '1902', NULL, 'bank', '', '', '', '', '', 'Visa', '3900.0000', NULL, 13, 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 (2842, '2025-03-25 09:14:00', 1885, NULL, NULL, '1903', NULL, 'bank', '', '', '', '', '', 'Visa', '7500.0000', NULL, 13, 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 (2843, '2025-03-25 09:15:00', 2318, NULL, NULL, '1904', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2844, '2025-03-25 09:17:00', 2319, NULL, NULL, '1905', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2845, '2025-03-25 09:20:00', 2320, NULL, NULL, '1906', NULL, 'bank', '', '', '', '', '', 'Visa', '17000.0000', NULL, 13, 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 (2846, '2025-03-25 09:22:00', 2321, NULL, NULL, '1907', NULL, 'bank', '', '', '', '', '', 'Visa', '1300.0000', NULL, 13, 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 (2847, '2025-03-25 09:36:00', 2322, NULL, NULL, '1908', NULL, 'bank', '', '', '', '', '', 'Visa', '1160.0000', NULL, 13, 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 (2848, '2025-03-25 09:58:00', 2323, NULL, NULL, '1909', NULL, 'bank', '', '', '', '', '', 'Visa', '7800.0000', NULL, 13, 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 (2849, '2025-03-07 10:19:00', 2324, NULL, NULL, '1910', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2850, '2025-03-25 10:36:00', 2324, NULL, NULL, '1911', NULL, 'bank', '', '', '', '', '', 'Visa', '31800.0000', NULL, 13, 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 (2851, '2025-03-25 10:38:00', 2325, NULL, NULL, '1912', NULL, 'bank', '', '', '', '', '', 'Visa', '200.0000', NULL, 13, 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 (2852, '2025-02-28 10:46:00', 2326, NULL, NULL, '1913', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2853, '2025-03-21 10:48:00', 2326, NULL, NULL, '1914', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2854, '2025-03-25 10:49:00', 2326, NULL, NULL, '1915', NULL, 'bank', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, 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 (2855, '2025-03-25 10:50:00', 2097, NULL, NULL, '1916', NULL, 'bank', '', '', '', '', '', 'Visa', '17000.0000', NULL, 13, 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 (2856, '2025-03-25 10:56:00', 2327, NULL, NULL, '1917', NULL, 'bank', '', '', '', '', '', 'Visa', '12950.0000', NULL, 13, 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 (2857, '2025-03-25 11:06:00', 2328, NULL, NULL, '1918', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '30000.0000', NULL, 13, 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 (2858, '2025-03-25 11:10:00', 2329, NULL, NULL, '1919', NULL, 'bank', '', '', '', '', '', 'Visa', '6799.9000', NULL, 13, 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 (2859, '2025-03-25 11:17:00', 2330, NULL, NULL, '1920', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2860, '2025-03-26 11:26:00', 2050, NULL, NULL, '1921', NULL, 'bank', '', '', '', '', '', 'Visa', '3700.0000', NULL, 13, 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 (2861, '2025-03-26 11:29:00', 2332, NULL, NULL, '1922', NULL, 'bank', '', '', '', '', '', 'Visa', '1400.0000', NULL, 13, 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 (2862, '2025-03-26 11:34:00', 2333, NULL, NULL, '1923', NULL, 'bank', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2863, '2025-03-26 11:49:00', 1887, NULL, NULL, '1924', NULL, 'bank', '', '', '', '', '', 'Visa', '23500.0000', NULL, 13, 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 (2864, '2025-03-26 11:51:00', 2159, NULL, NULL, '1925', NULL, 'bank', '', '', '', '', '', 'Visa', '2700.0000', NULL, 13, 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 (2865, '0000-00-00 00:00:00', 2334, NULL, NULL, '1926', NULL, 'bank', '', '', '', '', '', 'Visa', '4000.0000', NULL, 13, 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 (2866, '2025-03-27 21:09:00', 1973, NULL, NULL, '1927', NULL, 'bank', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2867, '2025-03-27 21:10:00', 1907, NULL, NULL, '1928', NULL, 'bank', '', '', '', '', '', 'Visa', '10200.0000', NULL, 13, 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 (2868, '2025-03-27 21:13:00', 2245, NULL, NULL, '1929', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2869, '2025-01-20 11:37:00', 2335, NULL, NULL, '1930', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '800.0000', NULL, 13, 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 (2870, '2025-02-18 11:52:00', 2335, NULL, NULL, '1931', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2871, '2025-01-28 11:53:00', 2335, NULL, NULL, '1932', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1800.0000', NULL, 13, 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 (2872, '2025-02-17 11:54:00', 2335, NULL, NULL, '1933', NULL, 'cash', '', '', '', '', '', 'Visa', '1250.0000', NULL, 13, 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 (2873, '2025-01-20 11:54:00', 2336, NULL, NULL, '1934', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2874, '2025-02-17 11:55:00', 2336, NULL, NULL, '1935', NULL, 'cash', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2875, '2025-01-20 11:56:00', 2337, NULL, NULL, '1936', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2876, '2025-02-17 11:58:00', 2337, NULL, NULL, '1937', NULL, 'bank', '', '', '', '', '', 'Visa', '14500.0000', NULL, 13, 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 (2877, '2025-01-20 11:58:00', 2338, NULL, NULL, '1938', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2878, '2025-02-14 12:01:00', 2338, NULL, NULL, '1939', NULL, 'bank', '', '', '', '', '', 'Visa', '3800.0000', NULL, 13, 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 (2879, '2025-03-20 12:01:00', 2339, NULL, NULL, '1940', NULL, 'bank', '', '', '', '', '', 'Visa', '3500.0000', NULL, 13, 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 (2880, '2025-02-15 12:05:00', 2339, NULL, NULL, '1941', NULL, 'bank', '', '', '', '', '', 'Visa', '4100.0000', NULL, 13, 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 (2881, '2025-01-20 12:06:00', 2340, NULL, NULL, '1942', NULL, 'cash', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2882, '2025-01-17 12:07:00', 2340, NULL, NULL, '1943', NULL, 'cash', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, 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 (2883, '2025-02-15 12:09:00', 2341, NULL, NULL, '1944', NULL, 'bank', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2884, '2025-02-20 12:11:00', 2341, NULL, NULL, '1945', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2885, '2025-02-20 12:12:00', 2341, NULL, NULL, '1946', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '21600.0000', NULL, 13, 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 (2886, '2025-01-21 12:16:00', 2342, NULL, NULL, '1947', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '66500.0000', NULL, 13, 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 (2887, '2025-02-01 12:18:00', 2342, NULL, NULL, '1948', NULL, 'bank', '', '', '', '', '', 'Visa', '66500.0000', NULL, 13, 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 (2888, '2025-03-04 14:00:00', 1800, NULL, NULL, '1949', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2950.0000', NULL, 13, 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 (2889, '2025-03-17 14:09:00', 1806, NULL, NULL, '1950', NULL, 'bank', '', '', '', '', '', 'Visa', '24800.0000', NULL, 13, 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 (2890, '2025-03-10 14:15:00', 1822, NULL, NULL, '1951', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2891, '2025-02-15 14:25:00', 1829, NULL, NULL, '1952', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2892, '2025-02-04 14:29:00', 2343, NULL, NULL, '1953', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2893, '2025-02-25 14:33:00', 2343, NULL, NULL, '1954', NULL, 'cash', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, 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 (2894, '2025-02-04 14:34:00', 2344, NULL, NULL, '1955', NULL, 'cash', '', '', '', '', '', 'Visa', '2200.0000', NULL, 13, 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 (2895, '2025-02-12 14:40:00', 2344, NULL, NULL, '1956', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2896, '2025-02-04 14:40:00', 2345, NULL, NULL, '1957', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2897, '2025-02-24 14:41:00', 2345, NULL, NULL, '1958', NULL, 'bank', '', '', '', '', '', 'Visa', '2800.0000', NULL, 13, 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 (2898, '2025-03-01 14:43:00', 1702, NULL, NULL, '1959', NULL, 'bank', '', '', '', '', '', 'Visa', '2600.0000', NULL, 13, 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 (2899, '2025-02-05 14:47:00', 2346, NULL, NULL, '1960', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2901, '2025-03-03 14:50:00', 2346, NULL, NULL, '1962', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7300.0000', NULL, 13, 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 (2902, '2025-03-05 14:51:00', 1704, NULL, NULL, '1963', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '8500.0000', NULL, 13, 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 (2903, '2025-02-05 14:52:00', 2348, NULL, NULL, '1964', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2904, '2025-02-28 14:53:00', 2348, NULL, NULL, '1965', NULL, 'bank', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2905, '2025-02-05 14:56:00', 2349, NULL, NULL, '1966', NULL, 'cash', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2906, '2025-02-05 14:58:00', 2350, NULL, NULL, '1967', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2907, '2025-02-25 15:00:00', 2350, NULL, NULL, '1968', NULL, 'cash', '', '', '', '', '', 'Visa', '600.0000', NULL, 13, 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 (2908, '2025-02-05 15:02:00', 1748, NULL, NULL, '1969', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2909, '2025-03-22 15:02:00', 1748, NULL, NULL, '1970', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4850.0000', NULL, 13, 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 (2910, '2025-02-05 15:06:00', 2351, NULL, NULL, '1971', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2911, '2025-02-06 15:08:00', 2352, NULL, NULL, '1972', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, 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 (2912, '2025-03-03 15:09:00', 2352, NULL, NULL, '1973', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '7100.0000', NULL, 13, 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 (2914, '2025-02-03 15:14:00', 2354, NULL, NULL, '1975', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2915, '2025-03-12 15:20:00', 1694, NULL, NULL, '1976', NULL, 'bank', '', '', '', '', '', 'Visa', '6000.0000', NULL, 13, 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 (2916, '2025-03-04 15:22:00', 2355, NULL, NULL, '1977', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '145000.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2917, '2025-02-03 15:35:00', 2356, NULL, NULL, '1978', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '47500.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2918, '2025-02-03 15:40:00', 2357, NULL, NULL, '1979', NULL, 'cash', '', '', '', '', '', 'Visa', '13300.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2919, '2025-02-03 15:41:00', 2358, NULL, NULL, '1980', NULL, 'bank', '', '', '', '', '', 'Visa', '2000.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2920, '2025-01-22 16:14:00', 2359, NULL, NULL, '1981', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2921, '2025-02-17 16:16:00', 2359, NULL, NULL, '1982', NULL, 'cash', '', '', '', '', '', 'Visa', '14000.0000', NULL, 13, 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 (2922, '2025-01-22 16:16:00', 2360, NULL, NULL, '1983', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2923, '2025-02-17 16:18:00', 2360, NULL, NULL, '1984', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2700.0000', NULL, 13, 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 (2924, '2025-01-22 16:18:00', 2361, NULL, NULL, '1985', NULL, 'bank', '', '', '', '', '', 'Visa', '38000.0000', NULL, 13, NULL, 'received', '<p>paid to mr munene</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2925, '2025-01-23 08:57:00', 2362, NULL, NULL, '1986', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2926, '2025-02-17 08:58:00', 2362, NULL, NULL, '1987', NULL, 'bank', '', '', '', '', '', 'Visa', '5200.0000', NULL, 13, 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 (2927, '2025-01-23 08:59:00', 2363, NULL, NULL, '1988', NULL, 'bank', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2928, '2025-01-23 09:00:00', 2364, NULL, NULL, '1989', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2929, '2025-02-18 09:01:00', 2364, NULL, NULL, '1990', NULL, 'bank', '', '', '', '', '', 'Visa', '19800.0000', NULL, 13, 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 (2930, '2025-01-23 09:04:00', 2365, NULL, NULL, '1991', NULL, 'cash', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2931, '2025-02-17 09:05:00', 2365, NULL, NULL, '1992', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '4500.0000', NULL, 13, 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 (2932, '2025-01-24 09:05:00', 2366, NULL, NULL, '1993', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '9500.0000', NULL, 13, 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 (2933, '2025-02-17 09:07:00', 2366, NULL, NULL, '1994', NULL, 'cash', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, 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 (2934, '2025-01-24 09:08:00', 2367, NULL, NULL, '1995', NULL, 'cash', '', '', '', '', '', 'Visa', '1500.0000', NULL, 13, 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 (2935, '2025-02-17 09:12:00', 2367, NULL, NULL, '1996', NULL, 'cash', '', '', '', '', '', 'Visa', '9900.0000', NULL, 13, 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 (2936, '2025-01-27 09:20:00', 2368, NULL, NULL, '1997', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2937, '2025-02-20 09:22:00', 2368, NULL, NULL, '1998', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '8300.0000', NULL, 13, 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 (2938, '2025-02-17 09:22:00', 2369, NULL, NULL, '1999', NULL, 'bank', '', '', '', '', '', 'Visa', '11400.0000', NULL, 13, 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 (2939, '2025-01-27 09:23:00', 2370, NULL, NULL, '2000', NULL, 'bank', '', '', '', '', '', 'Visa', '5700.0000', NULL, 13, NULL, 'received', '<p>collected 3</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2941, '2025-01-28 09:40:00', 2372, NULL, NULL, '2002', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '37000.0000', NULL, 13, NULL, 'received', '<p>collected 3</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2942, '2025-03-03 09:43:00', 2372, NULL, NULL, '2003', NULL, 'bank', '', '', '', '', '', 'Visa', '9400.0000', NULL, 13, 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 (2943, '2025-02-17 09:53:00', 2044, NULL, NULL, '2004', NULL, 'bank', '', '', '', '', '', 'Visa', '47500.0000', NULL, 13, 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 (2944, '2025-02-25 09:56:00', 1832, NULL, NULL, '2005', NULL, 'cash', '', '', '', '', '', 'Visa', '100.0000', NULL, 13, 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 (2947, '2025-01-30 10:13:00', 2374, NULL, NULL, '2008', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, NULL, 'received', '<p>collected 3</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2948, '2025-02-25 10:14:00', 2374, NULL, NULL, '2009', NULL, 'cash', '', '', '', '', '', 'Visa', '7600.0000', NULL, 13, 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 (2949, '2025-01-31 10:16:00', 2375, NULL, NULL, '2010', NULL, 'bank', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, NULL, 'received', '<p>collected 3</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2950, '2025-02-15 10:18:00', 2375, NULL, NULL, '2011', NULL, 'bank', '', '', '', '', '', 'Visa', '10900.0000', NULL, 13, 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 (2951, '2025-01-31 10:19:00', 2376, NULL, NULL, '2012', NULL, 'bank', '', '', '', '', '', 'Visa', '15200.0000', NULL, 13, NULL, 'received', '<p>collected 3</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2952, '2025-03-31 10:48:00', 2378, NULL, NULL, '2013', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '2500.0000', NULL, 13, 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 (2953, '2025-03-31 10:52:00', 2379, NULL, NULL, '2014', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2954, '2025-04-01 11:11:00', 2380, NULL, NULL, '2015', NULL, 'bank', '', '', '', '', '', 'Visa', '1900.0000', NULL, 13, NULL, 'received', '<p>PAID BY JIMLET</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2955, '2025-04-01 11:13:00', 2381, NULL, NULL, '2016', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2956, '2025-04-01 11:16:00', 2382, NULL, NULL, '2017', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2957, '2025-04-03 11:27:00', 2385, NULL, NULL, '2018', NULL, 'bank', '', '', '', '', '', 'Visa', '5000.0000', NULL, 13, 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 (2958, '2025-04-03 11:29:00', 2386, NULL, NULL, '2019', NULL, 'bank', '', '', '', '', '', 'Visa', '3000.0000', NULL, 13, 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 (2959, '2025-04-03 11:29:00', 2387, NULL, NULL, '2020', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '10000.0000', NULL, 13, 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 (2960, '2025-04-04 11:55:00', 2170, NULL, NULL, '2021', NULL, 'bank', '', '', '', '', '', 'Visa', '22800.0000', NULL, 13, 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 (2961, '2025-03-29 15:25:00', 2101, NULL, NULL, '2022', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '17000.0000', NULL, 13, 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 (2962, '2025-04-04 15:26:00', 2101, NULL, NULL, '2023', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2963, '2025-03-19 16:17:00', 1753, NULL, NULL, '2024', NULL, 'bank', '', '', '', '', '', 'Visa', '28150.0000', NULL, 13, 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 (2964, '2025-03-01 16:21:00', 1815, NULL, NULL, '2025', NULL, 'bank', '', '', '', '', '', 'Visa', '400.0000', NULL, 13, NULL, 'received', '<p>paid by stephen</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2965, '2025-03-12 16:23:00', 1821, NULL, NULL, '2026', NULL, 'bank', '', '', '', '', '', 'Visa', '4700.0000', NULL, 13, NULL, 'received', '<p>paid by agnes</p>', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2966, '2025-03-14 16:28:00', 1865, NULL, NULL, '2027', NULL, 'bank', '', '', '', '', '', 'Visa', '3600.0000', NULL, 13, 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 (2967, '2025-03-14 16:36:00', 1942, NULL, NULL, '2028', NULL, 'Mpesa', '', '', '', '', '', 'Visa', '65.0000', NULL, 13, 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 (2968, '2025-03-21 16:38:00', 1910, NULL, NULL, '2029', NULL, 'bank', '', '', '', '', '', 'Visa', '1000.0000', NULL, 13, 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 (2969, '2025-03-31 16:41:00', 1970, NULL, NULL, '2030', NULL, 'bank', '', '', '', '', '', 'Visa', '700.0000', NULL, 13, 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 (2970, '2025-03-25 16:48:00', 1949, NULL, NULL, '2031', NULL, 'bank', '', '', '', '', '', 'Visa', '2900.0000', NULL, 13, 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 (2971, '2025-03-10 16:50:00', 2126, NULL, NULL, '2032', NULL, 'bank', '', '', '', '', '', 'Visa', '1600.0000', NULL, 13, NULL, 'received', '', '0.0000', '0.0000', NULL);


#
# TABLE STRUCTURE FOR: sma_paypal
#

DROP TABLE IF EXISTS `sma_paypal`;

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

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


#
# TABLE STRUCTURE FOR: sma_permissions
#

DROP TABLE IF EXISTS `sma_permissions`;

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

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


#
# TABLE STRUCTURE FOR: sma_pos_register
#

DROP TABLE IF EXISTS `sma_pos_register`;

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

INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (1, '2021-11-16 23:36:08', 1, '0.0000', 'close', '760.0000', 0, 0, '760.0000', 0, 0, '', '2021-11-16 23:53:36', '0', 1);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (2, '2021-11-17 00:09:37', 2, '0.0000', 'close', '940.0000', 0, 0, '940.0000', 0, 0, '', '2021-11-17 00:27:55', NULL, 1);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (3, '2021-11-17 00:35:00', 3, '0.0000', 'close', '0.0000', 0, 0, '0.0000', 0, 0, '', '2021-11-17 01:54:18', NULL, 3);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (4, '2021-11-17 01:38:24', 2, '10000.0000', 'close', '700.0000', 0, 0, '700.0000', 0, 0, '', '2021-11-17 01:54:31', NULL, 3);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (5, '2021-11-17 01:50:56', 4, '0.0000', 'close', '180.0000', 0, 0, '180.0000', 0, 0, '', '2021-11-17 01:54:42', NULL, 3);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (6, '2022-05-01 14:27:58', 3, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (7, '2022-05-02 02:09:04', 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 (8, '2022-05-02 14:44:28', 6, '0.0000', 'close', '0.0000', 0, 0, '0.0000', 0, 0, '', '2022-05-04 16:29:00', '0', 6);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (9, '2022-05-02 15:17:43', 7, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (10, '2022-05-04 17:45:31', 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 (11, '2024-12-20 15:56:31', 13, '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.47',
  `after_sale_page` tinyint(1) DEFAULT 0,
  `item_order` tinyint(1) DEFAULT 0,
  `authorize` tinyint(1) DEFAULT 0,
  `toggle_brands_slider` varchar(55) DEFAULT NULL,
  `remote_printing` tinyint(1) DEFAULT 1,
  `printer` int(11) DEFAULT NULL,
  `order_printers` varchar(55) DEFAULT NULL,
  `auto_print` tinyint(1) DEFAULT 0,
  `customer_details` tinyint(1) DEFAULT NULL,
  `local_printers` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`pos_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_pos_settings` (`pos_id`, `cat_limit`, `pro_limit`, `default_category`, `default_customer`, `default_biller`, `display_time`, `cf_title1`, `cf_title2`, `cf_value1`, `cf_value2`, `receipt_printer`, `cash_drawer_codes`, `focus_add_item`, `add_manual_product`, `customer_selection`, `add_customer`, `toggle_category_slider`, `toggle_subcategory_slider`, `cancel_sale`, `suspend_sale`, `print_items_list`, `finalize_sale`, `today_sale`, `open_hold_bills`, `close_register`, `keyboard`, `pos_printers`, `java_applet`, `product_button_color`, `tooltips`, `paypal_pro`, `stripe`, `rounding`, `char_per_line`, `pin_code`, `purchase_code`, `envato_username`, `version`, `after_sale_page`, `item_order`, `authorize`, `toggle_brands_slider`, `remote_printing`, `printer`, `order_printers`, `auto_print`, `customer_details`, `local_printers`) VALUES (1, 22, 20, 34, 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', 0, NULL, 0, 'default', 1, 0, 0, 0, 42, '12345', 'purchase_code', 'envato_username', '3.4.47', 0, 1, 0, '', 1, NULL, 'null', 0, 1, 1);


#
# TABLE STRUCTURE FOR: sma_price_groups
#

DROP TABLE IF EXISTS `sma_price_groups`;

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

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


#
# TABLE STRUCTURE FOR: sma_printers
#

DROP TABLE IF EXISTS `sma_printers`;

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

#
# TABLE STRUCTURE FOR: sma_product_photos
#

DROP TABLE IF EXISTS `sma_product_photos`;

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

#
# TABLE STRUCTURE FOR: sma_product_prices
#

DROP TABLE IF EXISTS `sma_product_prices`;

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

#
# TABLE STRUCTURE FOR: sma_product_variants
#

DROP TABLE IF EXISTS `sma_product_variants`;

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

#
# TABLE STRUCTURE FOR: sma_products
#

DROP TABLE IF EXISTS `sma_products`;

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

INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (961, '11720628', 'royal 705', 5, '0.0000', '1300.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '58.0000', NULL, 0, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'royal-705', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (976, '13561891', 'ansal', 5, '0.0000', '1900.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '-1685.0676', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'ansal', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (982, '15944529', 'kibostar', 5, '0.0000', '1300.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '-18.5000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'kibostar', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (997, '17040387', 'gloria', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 33, NULL, '', '', '', '', '', '', NULL, NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'gloria', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1012, '14415533', 'harmony', 5, '0.0000', '2000.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '20.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'harmony', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1017, '16473929', ' victoria', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '277.9250', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'victoria', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1031, '17799852', 'terminator', 5, '0.0000', '1300.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '-12.2000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'terminator', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1038, '13422071', 'sukuma', 5, '0.0000', '700.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '125.2002', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'sukuma', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1044, '51726696', 'malkia pawpaw pcs ', 4, '0.0000', '150.0000', '0.0000', 'no_image.png', 36, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 4, 4, 0, '51726696', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1047, '06736723', 'Queen f1 seedlings', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 33, NULL, '', '', '', '', '', '', '-30.7500', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'queen-f1-seedlings', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1057, '20183289', 'sukuma matumbo', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '8.6250', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, 'sukuma-matumbo', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1072, '10206750', 'spinach f1', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '83.9605', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 0, '10206750', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1094, '14007806', 's.bell', 5, '0.0000', '1000.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '285.4910', NULL, 0, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 5, 5, 2, 'sbell', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1097, '81885396', 'BIG ROCK propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '81885396', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1098, '82701409', 'Drd', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '82701409', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1099, '37493378', 'nova propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '37493378', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1100, '14639397', 'svte 8444', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '14639397', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1101, '42441894', 'star 9065', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '42441894', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1102, '30008477', 'crown', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '30008477', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1103, '50953718', 'commandant', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '50953718', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1104, '90314158', 'cucumber', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 40, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '90314158', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1105, '38902836', 'melon', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 38, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '38902836', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1106, '46426438', 'paw paws propagation', NULL, NULL, '20.0000', '0.0000', 'no_image.png', 36, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '46426438', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1107, '52752209', 'vegetables propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '52752209', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1108, '44647149', 'maxibell', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '44647149', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1109, '91872895', 'royal propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '91872895', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1110, '16181938', 'f2', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, '16181938', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1111, '42936668', 'crown propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, 'crown-propagation', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1112, '94903006', 'harmony propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '94903006', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1113, '06705895', 'squash propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 38, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'squash-propagation', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1114, '05555063', 'star 9065 propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'star-9065-propagation', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1115, '18372909', 'ansal propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '18372909', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1116, '23850574', 'sweeet revelation', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, '23850574', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1117, '27618411', 'rambo propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '27618411', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1118, '45671831', 'bareto propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 2, '45671831', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1119, '30081825', 'mix propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '30081825', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1120, '99878087', 'Rafano propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '99878087', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1121, '84052943', 'pixies', NULL, NULL, '150.0000', '0.0000', 'no_image.png', 36, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '84052943', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1122, '75722675', 'Rionex propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '75722675', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1123, '35427124', 'queen propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '35427124', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1124, '80606522', 'victory yellow', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '80606522', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1125, '72976730', 'victory red', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '72976730', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1126, '80226308', 'zara propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '80226308', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1127, '33533655', 'mila propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '33533655', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1128, '00367070', 'commando propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '00367070', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1129, '44258810', 'kibostar propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '44258810', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1130, '59903299', 'terminator propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '59903299', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1131, '09465263', 'max', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '09465263', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1132, '38049398', 'To 135', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '38049398', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1133, '53798315', 'Thorn melon', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 38, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '53798315', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1134, '95195228', 'Long purple', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '95195228', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1135, '04508794', 'chillins propagation', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '04508794', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1136, '12719713', 'siri propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'siri-propagation', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1137, '16566701', 's.bell propagation', NULL, NULL, '700.0000', '0.0000', 'no_image.png', 35, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '16566701', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1138, '55069376', 'kilimo propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '55069376', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1139, '10834572', 'Celery propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'celery-propagation', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1140, '88534018', 'Long purple', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '88534018', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1141, '68733522', 'BIG ROCK', 5, '0.0000', '2200.0000', '0.0000', 'no_image.png', 34, 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, 5, 5, 0, '68733522', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1142, '73772075', 'zawadi', 5, '0.0000', '800.0000', '0.0000', 'no_image.png', 33, 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, 5, 5, 0, '73772075', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1143, '82513503', 'lettuce', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 37, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '82513503', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1144, '02151959', 'BIG ROCK', 5, '0.0000', '2100.0000', '0.0000', 'no_image.png', 34, 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, 5, 5, 0, '02151959', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1145, '20805446', 'ranger propagation', NULL, NULL, '650.0000', '0.0000', 'no_image.png', 34, NULL, '', '', '', '', '', '', '0.0000', NULL, 0, '', NULL, 'code128', '', '', NULL, 'service', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '20805446', NULL, '0.0000', NULL, 0, 0, '', 0);


#
# TABLE STRUCTURE FOR: sma_promos
#

DROP TABLE IF EXISTS `sma_promos`;

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

#
# 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=InnoDB AUTO_INCREMENT=824 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 4, '', '', 9, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 6, '', '', 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 (11, NULL, NULL, 12, '', '', 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 (157, NULL, NULL, 22, '', '', 382, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (365, NULL, NULL, 70, '98884734', 'STRIPED SWEATER SIZE 24', 1057, '0.0000', '2.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-10', 'received', '0.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (366, NULL, NULL, 72, '55828539', 'STRIPED SWEATER SIZE 26', 1058, '0.0000', '2.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-10', 'received', '0.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (367, NULL, NULL, 73, '25224418', 'STIPED SWEATER SIZE 28', 1059, '0.0000', '2.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-10', 'received', '0.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (368, NULL, NULL, 73, '25224418', 'STIPED SWEATER SIZE 28', 1060, '0.0000', '1.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-10', 'received', '0.0000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (369, NULL, NULL, 76, '45799187', 'STRIPED SWEATER SIZE 30', 1061, '0.0000', '2.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-10', 'received', '0.0000', NULL, '2.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (370, NULL, NULL, 78, '67901865', 'STRIPED SWEATER SIZE 32', 1062, '0.0000', '1.0000', 0, '0.0000', 1, '0.0000', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-10', 'received', '0.0000', NULL, '1.0000', NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (418, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 1057, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (419, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 1058, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (420, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 1059, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (421, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 676, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '-3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (422, NULL, NULL, 84, '77194040', 'STRIPPED SWEATER SIZE 38', 815, '0.0000', '-4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '-4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-4.0000', NULL, NULL, 4, 'Pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (423, NULL, NULL, 85, '57082232', 'MARVINS', 821, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (424, NULL, NULL, 85, '57082232', 'MARVINS', 822, '0.0000', '-30.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '25.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-30.0000', NULL, NULL, 4, 'Pc', '-30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (425, NULL, NULL, 85, '57082232', 'MARVINS', 820, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '31.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (426, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 586, '0.0000', '-6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-6.0000', NULL, NULL, 4, 'Pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (427, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 603, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '15.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (428, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 614, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '12.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (429, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 616, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (430, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 612, '0.0000', '-5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '13.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-5.0000', NULL, NULL, 4, 'Pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (431, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 639, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (432, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 633, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '22.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (433, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 644, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (434, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 632, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (435, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 640, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '12.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (436, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 666, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '26.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (437, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 677, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (438, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 669, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (439, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 681, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (440, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 675, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '15.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (441, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 683, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '31.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (442, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 693, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (443, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 687, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '24.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (444, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 699, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '11.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (445, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 716, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (446, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 710, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (447, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 711, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '22.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (448, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 737, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '13.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (449, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 741, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '20.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (450, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 763, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (451, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 774, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (452, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 802, '0.0000', '-6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '-4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-6.0000', NULL, NULL, 4, 'Pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (453, NULL, NULL, 68, '93678803', 'STRIPPED  SWEATER SIZE 22', 596, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (454, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 623, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (455, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 624, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (456, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 645, '0.0000', '-4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-4.0000', NULL, NULL, 4, 'Pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (457, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 650, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (458, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 660, '0.0000', '-3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-3.0000', NULL, NULL, 4, 'Pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (459, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 709, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (460, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 703, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (461, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 729, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (462, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 759, '0.0000', '-4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-4.0000', NULL, NULL, 4, 'Pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (463, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 758, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (464, NULL, NULL, 82, '35420143', 'STRIPPED SWEATER SIZE 36', 787, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (465, NULL, NULL, 89, '34750754', 'ADULT TSHIRTS', 880, '0.0000', '-1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '20.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-1.0000', NULL, NULL, 4, 'Pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (474, NULL, NULL, 104, '33300347', 'PLAIN SLEEVLESS SWEATER SIZE 36', 1041, '0.0000', '-2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '-2.0000', NULL, NULL, 4, 'Pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (477, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 583, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (478, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 609, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (479, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 635, '0.0000', '19.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '19.0000', NULL, NULL, 4, 'Pc', '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (480, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 689, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (481, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 576, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (482, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 629, '0.0000', '18.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '17.0000', '2022-05-15', 'received', '0.0000', '0.0000', '18.0000', NULL, NULL, 4, 'Pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (483, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 665, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (484, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 682, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (485, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 736, '0.0000', '11.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '11.0000', NULL, NULL, 4, 'Pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (486, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 765, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (487, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 790, '0.0000', '14.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '14.0000', '2022-05-15', 'received', '0.0000', '0.0000', '14.0000', NULL, NULL, 4, 'Pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (488, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 578, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (489, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 605, '0.0000', '12.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '12.0000', '2022-05-15', 'received', '0.0000', '0.0000', '12.0000', NULL, NULL, 4, 'Pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (490, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 631, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (491, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 668, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (492, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 739, '0.0000', '14.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '12.0000', '2022-05-15', 'received', '0.0000', '0.0000', '14.0000', NULL, NULL, 4, 'Pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (493, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 764, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (494, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 577, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (495, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 604, '0.0000', '31.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '29.0000', '2022-05-15', 'received', '0.0000', '0.0000', '31.0000', NULL, NULL, 4, 'Pc', '31.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (496, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 630, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (497, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 791, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (498, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 592, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (499, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 617, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (500, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 698, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (501, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 725, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (502, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 752, '0.0000', '13.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '13.0000', '2022-05-15', 'received', '0.0000', '0.0000', '13.0000', NULL, NULL, 4, 'Pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (503, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 779, '0.0000', '15.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '15.0000', '2022-05-15', 'received', '0.0000', '0.0000', '15.0000', NULL, NULL, 4, 'Pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (504, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 806, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 587, '0.0000', '16.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '16.0000', '2022-05-15', 'received', '0.0000', '0.0000', '16.0000', NULL, NULL, 4, 'Pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 613, '0.0000', '14.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '17.0000', '2022-05-15', 'received', '0.0000', '0.0000', '14.0000', NULL, NULL, 4, 'Pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 638, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '20.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 694, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 720, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 747, '0.0000', '12.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '12.0000', '2022-05-15', 'received', '0.0000', '0.0000', '12.0000', NULL, NULL, 4, 'Pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 773, '0.0000', '11.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '10.0000', '2022-05-15', 'received', '0.0000', '0.0000', '11.0000', NULL, NULL, 4, 'Pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 801, '0.0000', '11.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '11.0000', '2022-05-15', 'received', '0.0000', '0.0000', '11.0000', NULL, NULL, 4, 'Pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 588, '0.0000', '11.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '11.0000', '2022-05-15', 'received', '0.0000', '0.0000', '11.0000', NULL, NULL, 4, 'Pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 721, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 749, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 580, '0.0000', '14.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '14.0000', NULL, NULL, 4, 'Pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 607, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '15.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 713, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 81, '04922238', 'PLAIN SWEATER SIZE 36', 766, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '19.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 793, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 68, '93678803', 'STRIPPED  SWEATER SIZE 22', 602, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 654, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 762, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 82, '35420143', 'STRIPPED SWEATER SIZE 36', 789, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 84, '77194040', 'STRIPPED SWEATER SIZE 38', 816, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 649, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '23.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 658, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '17.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 704, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 731, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 757, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 627, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 653, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 663, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 705, '0.0000', '13.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '13.0000', '2022-05-15', 'received', '0.0000', '0.0000', '13.0000', NULL, NULL, 4, 'Pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 734, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 761, '0.0000', '15.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '15.0000', '2022-05-15', 'received', '0.0000', '0.0000', '15.0000', NULL, NULL, 4, 'Pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 82, '35420143', 'STRIPPED SWEATER SIZE 36', 788, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '14.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 84, '77194040', 'STRIPPED SWEATER SIZE 38', 813, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 68, '93678803', 'STRIPPED  SWEATER SIZE 22', 595, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 622, '0.0000', '10.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 4, 'Pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 647, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 659, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 730, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 1060, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 1061, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 606, '0.0000', '18.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '18.0000', '2022-05-15', 'received', '0.0000', '0.0000', '18.0000', NULL, NULL, 4, 'Pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 667, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 685, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 712, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 82, '35420143', 'STRIPPED SWEATER SIZE 36', 785, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 679, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 75, '99187154', 'PLAIN SWEATER SIZE 30', 695, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 68, '93678803', 'STRIPPED  SWEATER SIZE 22', 600, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 626, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 651, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 662, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 707, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '5.0000', '2022-05-15', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 733, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 68, '93678803', 'STRIPPED  SWEATER SIZE 22', 597, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 619, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 655, '0.0000', '23.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '23.0000', '2022-05-15', 'received', '0.0000', '0.0000', '23.0000', NULL, NULL, 4, 'Pc', '23.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 700, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 80, '84932719', 'STRIPPED SWEATER SIZE 34', 753, '0.0000', '28.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '28.0000', '2022-05-15', 'received', '0.0000', '0.0000', '28.0000', NULL, NULL, 4, 'Pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 82, '35420143', 'STRIPPED SWEATER SIZE 36', 780, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 84, '77194040', 'STRIPPED SWEATER SIZE 38', 807, '0.0000', '22.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '22.0000', '2022-05-15', 'received', '0.0000', '0.0000', '22.0000', NULL, NULL, 4, 'Pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 661, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 76, '45799187', 'STRIPPED SWEATER SIZE 30', 708, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 102, '87507362', 'PLAIN SLEEVLESS SWEATER SIZE 34', 1008, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 104, '33300347', 'PLAIN SLEEVLESS SWEATER SIZE 36', 1044, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 611, '0.0000', '6.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '6.0000', '2022-05-15', 'received', '0.0000', '0.0000', '6.0000', NULL, NULL, 4, 'Pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 71, '82610024', 'PLAIN SWEATER SIZE 26', 637, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '8.0000', '2022-05-15', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 618, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 620, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 72, '55828539', 'STRIPPED SWEATER SIZE 26', 648, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '4.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 77, '67466475', 'PLAIN SWEATER SIZE 32', 719, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-15', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 79, '74949490', 'PLAIN SWEATER SIZE 34', 746, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 89, '34750754', 'ADULT TSHIRTS', 869, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 90, '27447770', 'KIDS TSHIRTS', 895, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-15', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 89, '34750754', 'ADULT TSHIRTS', 879, '0.0000', '4.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '20.0000', '2022-05-15', 'received', '0.0000', '0.0000', '4.0000', NULL, NULL, 4, 'Pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 90, '27447770', 'KIDS TSHIRTS', 892, '0.0000', '17.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '17.0000', '2022-05-15', 'received', '0.0000', '0.0000', '17.0000', NULL, NULL, 4, 'Pc', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 819, '0.0000', '16.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '16.0000', '2022-05-15', 'received', '0.0000', '0.0000', '16.0000', NULL, NULL, 4, 'Pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 817, '0.0000', '34.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '31.0000', '2022-05-15', 'received', '0.0000', '0.0000', '34.0000', NULL, NULL, 4, 'Pc', '34.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 824, '0.0000', '28.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '27.0000', '2022-05-15', 'received', '0.0000', '0.0000', '28.0000', NULL, NULL, 4, 'Pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 818, '0.0000', '108.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '104.0000', '2022-05-15', 'received', '0.0000', '0.0000', '108.0000', NULL, NULL, 4, 'Pc', '108.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 830, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-15', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 831, '0.0000', '42.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '42.0000', '2022-05-15', 'received', '0.0000', '0.0000', '42.0000', NULL, NULL, 4, 'Pc', '42.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 825, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 85, '57082232', 'MARVINS', 828, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-15', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 86, '33793545', 'AZURE MARVINS', 832, '0.0000', '30.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '30.0000', '2022-05-15', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 4, 'Pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 101, '25205383', 'PLAIN SLEEVLESS SWEATER SIZE 32', 990, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-16', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 102, '87507362', 'PLAIN SLEEVLESS SWEATER SIZE 34', 1007, '0.0000', '3.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '3.0000', '2022-05-16', 'received', '0.0000', '0.0000', '3.0000', NULL, NULL, 4, 'Pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 83, '33727909', 'PLAIN SWEATER SIZE 38', 792, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-16', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 87, '54138138', 'LEGWARMERS', 835, '0.0000', '11.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '11.0000', '2022-05-16', 'received', '0.0000', '0.0000', '11.0000', NULL, NULL, 4, 'Pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (594, NULL, NULL, 94, '99601902', 'STRIPPED SLEEVELESS SWEATER SIZE 26 ', 940, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-16', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (595, NULL, NULL, 95, '94638829', 'STRIPPED SLEEVLESS SWEATER SIZE 28', 950, '0.0000', '9.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '9.0000', '2022-05-16', 'received', '0.0000', '0.0000', '9.0000', NULL, NULL, 4, 'Pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (596, NULL, NULL, 99, '03515693', 'STRIPPED SLEEVLESS SWEATER SIZE 34', 980, '0.0000', '8.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-16', 'received', '0.0000', '0.0000', '8.0000', NULL, NULL, 4, 'Pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (597, NULL, NULL, 98, '84155321', 'STRIPPED SLEEVLESS SWEATER SIZE 32', 1128, '0.0000', '7.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '7.0000', '2022-05-16', 'received', '0.0000', '0.0000', '7.0000', NULL, NULL, 4, 'Pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (598, NULL, NULL, 84, '77194040', 'STRIPPED SWEATER SIZE 38', 810, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-16', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (600, NULL, NULL, 70, '98884734', 'STRIPPED SWEATER SIZE 24', 628, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '2.0000', '2022-05-17', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (601, NULL, NULL, 73, '25224418', 'STRIPPED SWEATER SIZE 28', 664, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-17', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (602, NULL, NULL, 78, '67901865', 'STRIPPED SWEATER SIZE 32', 735, '0.0000', '2.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-17', 'received', '0.0000', '0.0000', '2.0000', NULL, NULL, 4, 'Pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (605, NULL, NULL, 67, '55642863', 'PLAIN SWEATER SIZE 22', 1145, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-18', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (606, NULL, NULL, 69, '34018336', 'PLAIN SWEATER SIZE 24 ', 1144, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-18', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, NULL, NULL, 74, '58505902', 'PLAIN SWEATER SIZE 28', 1143, '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-18', 'received', '0.0000', '0.0000', '1.0000', NULL, NULL, 4, 'Pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (608, NULL, NULL, 107, '57285449', 'PLAIN SWEATER SIZE 40', 1065, '0.0000', '13.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '1.0000', '2022-05-21', 'received', '0.0000', '0.0000', '13.0000', NULL, NULL, 4, 'Pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (609, NULL, NULL, 108, '08702336', 'PLAIN SWEATER SIZE 42', 1081, '0.0000', '5.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2022-05-21', 'received', '0.0000', '0.0000', '5.0000', NULL, NULL, 4, 'Pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (613, NULL, NULL, 967, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '99.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (614, NULL, NULL, 1044, '', '', 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 (615, NULL, NULL, 972, '', '', 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 (616, NULL, NULL, 1045, '', '', 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 (617, NULL, NULL, 1040, '', '', 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 (618, NULL, NULL, 1046, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '297.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (619, NULL, NULL, 1034, '', '', 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 (620, NULL, NULL, 965, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '304.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (621, NULL, NULL, 964, '', '', 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 (622, NULL, NULL, 1047, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.7500', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (623, NULL, NULL, 1048, '', '', 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 (624, NULL, NULL, 1051, '', '', 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 (625, NULL, NULL, 1029, '', '', 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 (626, NULL, NULL, 1035, '', '', 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 (627, NULL, NULL, 1052, '', '', 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 (628, NULL, NULL, 1056, '', '', 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 (629, NULL, NULL, 1050, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '84.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (630, NULL, NULL, 1037, '', '', 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 (631, NULL, NULL, 1039, '', '', 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 (632, NULL, NULL, 1049, '', '', 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 (633, NULL, NULL, 971, '', '', 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 (634, NULL, NULL, 1042, '', '', 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 (635, NULL, NULL, 968, '', '', 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 (636, NULL, NULL, 1033, '', '', 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 (637, NULL, NULL, 1036, '', '', 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 (638, NULL, NULL, 1059, '', '', 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 (639, NULL, NULL, 1058, '', '', 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 (640, NULL, NULL, 1030, '', '', 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 (641, NULL, NULL, 1043, '', '', 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 (642, NULL, NULL, 1038, '', '', 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 (643, NULL, NULL, 1067, '', '', 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 (644, NULL, NULL, 1068, '', '', 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 (645, NULL, NULL, 1071, '', '', 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 (646, NULL, NULL, 1066, '', '', 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 (647, NULL, NULL, 1032, '', '', 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 (648, NULL, NULL, 970, '', '', 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 (649, NULL, NULL, 1084, '', '', 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 (650, NULL, NULL, 1085, '', '', 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 (651, NULL, NULL, 1086, '', '', 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 (652, NULL, NULL, 1087, '', '', 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 (653, NULL, NULL, 1088, '', '', 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 (654, NULL, NULL, 969, '', '', 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 (655, NULL, NULL, 1089, '', '', 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 (671, NULL, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '-9.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '-1685.0676', '2024-12-23', 'received', '0.0000', '0.0000', '-9.0000', NULL, NULL, 5, 'Try', '-9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (674, NULL, NULL, 1017, '', '', 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 (675, NULL, NULL, 1012, '', '', 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 (676, NULL, NULL, 1094, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '75.3000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (677, NULL, NULL, 982, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.5000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (691, NULL, NULL, 1031, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.2000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (692, NULL, NULL, 961, '', '', 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 (706, 66, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '81.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-01', 'received', '0.0000', '0.0000', '81.0000', NULL, NULL, 5, 'Try', '81.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 (708, 68, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '136.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '54.1910', '2025-02-04', 'received', '0.0000', '0.0000', '136.0000', NULL, NULL, 5, 'Try', '136.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 (709, 69, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-05', 'received', '0.0000', '0.0000', '14.0000', NULL, NULL, 5, 'Try', '14.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 (711, 71, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '137.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-06', 'received', '0.0000', '0.0000', '137.0000', NULL, NULL, 5, 'Try', '137.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 (712, 72, NULL, 982, '15944529', 'kibostar', NULL, '0.0000', '26.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-07', 'received', '0.0000', '0.0000', '26.0000', NULL, NULL, 5, 'Try', '26.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 (713, 73, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '106.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-07', 'received', '0.0000', '0.0000', '106.0000', NULL, NULL, 5, 'Try', '106.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 (714, 74, NULL, 1012, '14415533', 'harmony', NULL, '0.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '1970-01-01', 'received', '0.0000', '0.0000', '15.0000', NULL, NULL, 5, 'Try', '15.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 (716, 76, NULL, 1031, '17799852', 'terminator', NULL, '0.0000', '28.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-08', 'received', '0.0000', '0.0000', '28.0000', NULL, NULL, 5, 'Try', '28.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 (717, 77, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '29.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '10.0000', '1970-01-01', 'received', '0.0000', '0.0000', '29.0000', NULL, NULL, 5, 'Try', '29.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 (718, 78, NULL, 1057, '20183289', 'sukuma matumbo', NULL, '0.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '8.6250', '1970-01-01', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 5, 'Try', '10.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 (719, 79, NULL, 1038, '13422071', 'sukuma', NULL, '0.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '20.0000', '2025-02-10', 'received', '0.0000', '0.0000', '20.0000', NULL, NULL, 5, 'Try', '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 (720, 80, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '83.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-10', 'received', '0.0000', '0.0000', '83.0000', NULL, NULL, 5, 'Try', '83.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 (721, 81, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '116.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-11', 'received', '0.0000', '0.0000', '116.0000', NULL, NULL, 5, 'Try', '116.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 (722, 82, NULL, 1047, '06736723', 'Queen f1 seedlings', NULL, '0.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-11', 'received', '0.0000', '0.0000', '13.0000', NULL, NULL, 5, 'Try', '13.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 (723, 83, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '100.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-12', 'received', '0.0000', '0.0000', '100.0000', NULL, NULL, 5, 'Try', '100.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 (724, 84, NULL, 1038, '13422071', 'sukuma', NULL, '0.0000', '26.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '14.5650', '2025-02-13', 'received', '0.0000', '0.0000', '26.0000', NULL, NULL, 5, 'Try', '26.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 (725, 85, NULL, 1047, '06736723', 'Queen f1 seedlings', NULL, '0.0000', '82.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-13', 'received', '0.0000', '0.0000', '82.0000', NULL, NULL, 5, 'Try', '82.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 (726, 86, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '51.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-14', 'received', '0.0000', '0.0000', '51.0000', NULL, NULL, 5, 'Try', '51.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 (727, 87, NULL, 1072, '10206750', 'spinach f1', NULL, '0.0000', '17.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-14', 'received', '0.0000', '0.0000', '17.0000', NULL, NULL, 5, 'Try', '17.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 (728, 88, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '78.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-14', 'received', '0.0000', '0.0000', '78.0000', NULL, NULL, 5, 'Try', '78.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 (729, 89, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '109.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-17', 'received', '0.0000', '0.0000', '109.0000', NULL, NULL, 5, 'Try', '109.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 (730, 90, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '94.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-18', 'received', '0.0000', '0.0000', '94.0000', NULL, NULL, 5, 'Try', '94.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 (731, 91, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '97.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-19', 'received', '0.0000', '0.0000', '97.0000', NULL, NULL, 5, 'Try', '97.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 (732, 92, NULL, 1141, '68733522', 'BIG ROCK', NULL, '0.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '12.0000', '2025-02-19', 'received', '0.0000', '0.0000', '12.0000', NULL, NULL, 5, 'Try', '12.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 (733, 93, NULL, 1047, '06736723', 'Queen f1 seedlings', NULL, '0.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-22', 'received', '0.0000', '0.0000', '20.0000', NULL, NULL, 5, 'Try', '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 (734, 94, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-28', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 5, 'Try', '30.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 (735, 95, NULL, 982, '15944529', 'kibostar', NULL, '0.0000', '26.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-31', 'received', '0.0000', '0.0000', '26.0000', NULL, NULL, 5, 'Try', '26.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 (737, 97, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '46.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-21', 'received', '0.0000', '0.0000', '46.0000', NULL, NULL, 5, 'Try', '46.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 (738, 97, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '100.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-21', 'received', '0.0000', '0.0000', '100.0000', NULL, NULL, 5, 'Try', '100.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 (741, 99, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '64.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-24', 'received', '0.0000', '0.0000', '64.0000', NULL, NULL, 5, 'Try', '64.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 (742, 99, NULL, 1031, '17799852', 'terminator', NULL, '0.0000', '28.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-24', 'received', '0.0000', '0.0000', '28.0000', NULL, NULL, 5, 'Try', '28.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 (743, 99, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-24', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 5, 'Try', '30.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 (744, 100, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '136.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-25', 'received', '0.0000', '0.0000', '136.0000', NULL, NULL, 5, 'Try', '136.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 (745, 101, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '170.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-20', 'received', '0.0000', '0.0000', '170.0000', NULL, NULL, 5, 'Try', '170.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 (746, 102, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '139.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-21', 'received', '0.0000', '0.0000', '139.0000', NULL, NULL, 5, 'Try', '139.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 (747, 103, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '156.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-22', 'received', '0.0000', '0.0000', '156.0000', NULL, NULL, 5, 'Try', '156.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 (748, 104, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '69.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '6.4250', '2025-01-23', 'received', '0.0000', '0.0000', '69.0000', NULL, NULL, 5, 'Try', '69.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 (749, 104, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '103.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '103.0000', '2025-01-23', 'received', '0.0000', '0.0000', '103.0000', NULL, NULL, 5, 'Try', '103.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 (750, 105, NULL, 1038, '13422071', 'sukuma', NULL, '0.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '30.0000', '2025-01-24', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 5, 'Try', '30.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 (751, 105, NULL, 1072, '10206750', 'spinach f1', NULL, '0.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '15.4605', '2025-01-24', 'received', '0.0000', '0.0000', '40.0000', NULL, NULL, 5, 'Try', '40.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 (752, 106, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '55.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-29', 'received', '0.0000', '0.0000', '55.0000', NULL, NULL, 5, 'Try', '55.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 (756, 109, NULL, 1012, '14415533', 'harmony', NULL, '0.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-26', 'received', '0.0000', '0.0000', '19.0000', NULL, NULL, 5, 'Try', '19.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 (757, 110, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '155.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-26', 'received', '0.0000', '0.0000', '155.0000', NULL, NULL, 5, 'Try', '155.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 (758, 111, NULL, 1038, '13422071', 'sukuma', NULL, '0.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '30.6352', '2025-02-27', 'received', '0.0000', '0.0000', '60.0000', NULL, NULL, 5, 'Try', '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 (759, 112, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '39.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-27', 'received', '0.0000', '0.0000', '39.0000', NULL, NULL, 5, 'Try', '39.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 (760, 112, NULL, 982, '15944529', 'kibostar', NULL, '0.0000', '26.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-27', 'received', '0.0000', '0.0000', '26.0000', NULL, NULL, 5, 'Try', '26.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 (761, 112, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '56.5000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-27', 'received', '0.0000', '0.0000', '56.5000', NULL, NULL, 5, 'Try', '56.5000', 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 (762, 113, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '111.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-28', 'received', '0.0000', '0.0000', '111.0000', NULL, NULL, 5, 'Try', '111.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 (763, 114, NULL, 1142, '73772075', 'zawadi', NULL, '0.0000', '55.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '12.0000', '2025-02-28', 'received', '0.0000', '0.0000', '55.0000', NULL, NULL, 5, 'Try', '55.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 (764, 115, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '90.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-01', 'received', '0.0000', '0.0000', '90.0000', NULL, NULL, 5, 'Try', '90.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 (768, 119, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '129.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-04', 'received', '0.0000', '0.0000', '129.0000', NULL, NULL, 5, 'Try', '129.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 (770, 121, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '18.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-07', 'received', '0.0000', '0.0000', '18.0000', NULL, NULL, 5, 'Try', '18.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 (771, 122, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '86.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-08', 'received', '0.0000', '0.0000', '86.0000', NULL, NULL, 5, 'Try', '86.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 (772, 123, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '38.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-11', 'received', '0.0000', '0.0000', '38.0000', NULL, NULL, 5, 'Try', '38.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 (773, 124, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '94.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-12', 'received', '0.0000', '0.0000', '94.0000', NULL, NULL, 5, 'Try', '94.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 (774, 125, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '23.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '23.0000', '2025-03-12', 'received', '0.0000', '0.0000', '23.0000', NULL, NULL, 5, 'Try', '23.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 (775, 126, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '53.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '36.5000', '2025-03-13', 'received', '0.0000', '0.0000', '53.0000', NULL, NULL, 5, 'Try', '53.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 (776, 126, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '79.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-13', 'received', '0.0000', '0.0000', '79.0000', NULL, NULL, 5, 'Try', '79.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 (777, 127, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '46.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-14', 'received', '0.0000', '0.0000', '46.0000', NULL, NULL, 5, 'Try', '46.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 (778, 128, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '95.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-15', 'received', '0.0000', '0.0000', '95.0000', NULL, NULL, 5, 'Try', '95.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 (779, 129, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '78.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-17', 'received', '0.0000', '0.0000', '78.0000', NULL, NULL, 5, 'Try', '78.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 (780, 130, NULL, 1047, '06736723', 'Queen f1 seedlings', NULL, '0.0000', '42.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-18', 'received', '0.0000', '0.0000', '42.0000', NULL, NULL, 5, 'Try', '42.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 (781, 130, NULL, 982, '15944529', 'kibostar', NULL, '0.0000', '27.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-18', 'received', '0.0000', '0.0000', '27.0000', NULL, NULL, 5, 'Try', '27.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 (782, 130, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '66.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-18', 'received', '0.0000', '0.0000', '66.0000', NULL, NULL, 5, 'Try', '66.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 (783, NULL, NULL, 1144, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-12.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (784, 131, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '115.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-25', 'received', '0.0000', '0.0000', '115.0000', NULL, NULL, 5, 'Try', '115.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 (785, 132, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '125.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-27', 'received', '0.0000', '0.0000', '125.0000', NULL, NULL, 5, 'Try', '125.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 (786, 107, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '58.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-30', 'received', '0.0000', '0.0000', '58.0000', NULL, NULL, 5, 'Try', '58.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 (787, 107, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '74.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-01-30', 'received', '0.0000', '0.0000', '74.0000', NULL, NULL, 5, 'Try', '74.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 (790, 70, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '123.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-05', 'received', '0.0000', '0.0000', '123.0000', NULL, NULL, 5, 'Try', '123.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 (791, 67, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '117.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-03', 'received', '0.0000', '0.0000', '117.0000', NULL, NULL, 5, 'Try', '117.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 (794, 98, NULL, 1072, '10206750', 'spinach f1', NULL, '0.0000', '39.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-22', 'received', '0.0000', '0.0000', '39.0000', NULL, NULL, 5, 'Try', '39.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 (795, 98, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '63.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-22', 'received', '0.0000', '0.0000', '63.0000', NULL, NULL, 5, 'Try', '63.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 (796, 96, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '89.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-02-20', 'received', '0.0000', '0.0000', '89.0000', NULL, NULL, 5, 'Try', '89.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 (797, 120, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '108.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '108.0000', '2025-03-05', 'received', '0.0000', '0.0000', '108.0000', NULL, NULL, 5, 'Try', '108.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 (798, 116, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '24.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-03', 'received', '0.0000', '0.0000', '24.0000', NULL, NULL, 5, 'Try', '24.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 (799, 116, NULL, 1031, '17799852', 'terminator', NULL, '0.0000', '29.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-03', 'received', '0.0000', '0.0000', '29.0000', NULL, NULL, 5, 'Try', '29.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 (800, 116, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '11.0000', '2025-03-03', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 5, 'Try', '30.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 (801, 133, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '131.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-19', 'received', '0.0000', '0.0000', '131.0000', NULL, NULL, 5, 'Try', '131.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 (802, 134, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '128.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-20', 'received', '0.0000', '0.0000', '128.0000', NULL, NULL, 5, 'Try', '128.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 (803, 134, NULL, 1031, '17799852', 'terminator', NULL, '0.0000', '34.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-20', 'received', '0.0000', '0.0000', '34.0000', NULL, NULL, 5, 'Try', '34.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 (804, 135, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '163.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-21', 'received', '0.0000', '0.0000', '163.0000', NULL, NULL, 5, 'Try', '163.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 (805, 136, NULL, 1012, '14415533', 'harmony', NULL, '0.0000', '36.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '20.0000', '2025-03-22', 'received', '0.0000', '0.0000', '36.0000', NULL, NULL, 5, 'Try', '36.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 (806, 136, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '80.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-22', 'received', '0.0000', '0.0000', '80.0000', NULL, NULL, 5, 'Try', '80.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 (807, 137, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '124.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-24', 'received', '0.0000', '0.0000', '124.0000', NULL, NULL, 5, 'Try', '124.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 (808, 138, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '145.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '53.0000', '2025-03-25', 'received', '0.0000', '0.0000', '145.0000', NULL, NULL, 5, 'Try', '145.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 (809, 139, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '58.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-26', 'received', '0.0000', '0.0000', '58.0000', NULL, NULL, 5, 'Try', '58.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 (810, 140, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '76.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-27', 'received', '0.0000', '0.0000', '76.0000', NULL, NULL, 5, 'Try', '76.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 (811, 141, NULL, 1072, '10206750', 'spinach f1', NULL, '0.0000', '35.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '35.0000', '2025-03-28', 'received', '0.0000', '0.0000', '35.0000', NULL, NULL, 5, 'Try', '35.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 (812, 141, NULL, 1031, '17799852', 'terminator', NULL, '0.0000', '23.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-28', 'received', '0.0000', '0.0000', '23.0000', NULL, NULL, 5, 'Try', '23.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 (813, 142, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '76.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-29', 'received', '0.0000', '0.0000', '76.0000', NULL, NULL, 5, 'Try', '76.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 (814, 143, NULL, 1038, '13422071', 'sukuma', NULL, '0.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '30.0000', '2025-03-31', 'received', '0.0000', '0.0000', '30.0000', NULL, NULL, 5, 'Try', '30.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 (815, 143, NULL, 1072, '10206750', 'spinach f1', NULL, '0.0000', '33.5000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '33.5000', '2025-03-31', 'received', '0.0000', '0.0000', '33.5000', NULL, NULL, 5, 'Try', '33.5000', 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 (816, 143, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-03-31', 'received', '0.0000', '0.0000', '60.0000', NULL, NULL, 5, 'Try', '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 (817, 144, NULL, 1094, '14007806', 's.bell', NULL, '0.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-04-01', 'received', '0.0000', '0.0000', '10.0000', NULL, NULL, 5, 'Try', '10.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 (818, 144, NULL, 1017, '16473929', ' victoria', NULL, '0.0000', '104.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '104.0000', '2025-04-01', 'received', '0.0000', '0.0000', '104.0000', NULL, NULL, 5, 'Try', '104.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 (819, 144, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-04-01', 'received', '0.0000', '0.0000', '20.0000', NULL, NULL, 5, 'Try', '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 (820, 145, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '8.0000', '2025-04-02', 'received', '0.0000', '0.0000', '20.0000', NULL, NULL, 5, 'Try', '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 (821, 145, NULL, 976, '13561891', 'ansal', NULL, '0.0000', '92.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2025-04-02', 'received', '0.0000', '0.0000', '92.0000', NULL, NULL, 5, 'Try', '92.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 (822, 146, NULL, 961, '11720628', 'royal 705', NULL, '0.0000', '29.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '29.0000', '2025-02-08', 'received', '0.0000', '0.0000', '29.0000', NULL, NULL, 5, 'Try', '29.0000', NULL, NULL, NULL, NULL, '0.0000');


#
# TABLE STRUCTURE FOR: sma_purchases
#

DROP TABLE IF EXISTS `sma_purchases`;

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

INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (66, 'PO0058', '2025-02-01 11:50:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 28th february&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (67, 'PO0059', '2025-02-03 12:01:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 3, 13, '2025-04-03 10:42:21', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (68, 'PO0060', '2025-02-04 12:07:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;was sold all to mungai&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (69, 'PO0061', '2025-02-05 12:20:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;sold to mungai&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (70, 'PO0062', '2025-02-05 12:21:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 3rd march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 3, 13, '2025-04-03 10:41:30', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (71, 'PO0063', '2025-02-06 12:22:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 3rd march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (72, 'PO0064', '2025-02-07 12:24:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 5th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (73, 'PO0065', '2025-02-07 12:26:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 3rd march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (74, 'PO0066', '0000-00-00 00:00:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;TO BE COLLECTED ON 5TH MARCH&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (76, 'PO0068', '2025-02-08 12:36:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 5th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (77, 'PO0069', '0000-00-00 00:00:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 5th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (78, 'PO0070', '0000-00-00 00:00:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 8th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (79, 'PO0071', '2025-02-10 12:38:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 20th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (80, 'PO0072', '2025-02-10 12:39:00', 882, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected on 6th march&lt;&sol;p&gt;', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (81, 'PO0073', '2025-02-11 12:52:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (82, 'PO0074', '2025-02-11 12:52:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (83, 'PO0075', '2025-02-12 12:53:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (84, 'PO0076', '2025-02-13 12:58:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (85, 'PO0077', '2025-02-13 12:58:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (86, 'PO0078', '2025-02-14 13:10:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (87, 'PO0079', '2025-02-14 13:10:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (88, 'PO0080', '2025-02-14 13:12:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (89, 'PO0081', '2025-02-17 13:24:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (90, 'PO0082', '2025-02-18 12:03:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (91, 'PO0083', '2025-02-19 12:04:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (92, 'PO0084', '2025-02-19 12:05:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (93, 'PO0085', '2025-01-22 12:18:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (94, 'PO0086', '2025-01-28 12:31:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (95, 'PO0087', '2025-01-31 17:27:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (96, 'PO0088', '2025-02-20 15:27:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 13, 13, '2025-04-03 10:44:33', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (97, 'PO0089', '2025-02-21 15:28:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (98, 'PO0090', '2025-02-22 15:29:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 13, 13, '2025-04-03 10:44:15', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (99, 'PO0091', '2025-02-24 15:30:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (100, 'PO0092', '2025-02-25 15:31:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (101, 'PO0093', '2025-01-20 12:00:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (102, 'PO0094', '2025-01-21 12:01:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (103, 'PO0095', '2025-01-22 12:02:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (104, 'PO0096', '2025-01-23 12:02:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (105, 'PO0097', '2025-01-24 12:03:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (106, 'PO0098', '2025-01-29 12:04:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (107, 'PO0099', '2025-01-30 12:05:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 13, 13, '2025-04-03 10:34:03', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (109, 'PO0101', '2025-02-26 12:07:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (110, 'PO0102', '2025-02-26 12:08:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (111, 'PO0103', '2025-02-27 12:08:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (112, 'PO0104', '2025-02-27 12:09:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (113, 'PO0105', '2025-02-28 00:00:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (114, 'PO0106', '2025-02-28 12:14:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (115, 'PO0107', '2025-03-01 08:13:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (116, 'PO0108', '2025-03-03 08:13:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 13, 13, '2025-04-03 10:56:04', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (119, 'PO0111', '2025-03-04 08:15:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (120, 'PO0112', '2025-03-05 08:16:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'paid', 13, 13, '2025-04-03 10:55: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 (121, 'PO0113', '2025-03-07 08:16:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (122, 'PO0114', '2025-03-08 08:17:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (123, 'PO0115', '2025-03-11 08:18:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (124, 'PO0116', '2025-03-12 08:18:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (125, 'PO0117', '2025-03-12 08:19:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (126, 'PO0118', '2025-03-13 08:19:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (127, 'PO0119', '2025-03-14 08:20:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (128, 'PO0120', '2025-03-15 08:21:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (129, 'PO0121', '2025-03-17 08:22:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (130, 'PO0122', '2025-03-18 08:22:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (131, 'PO0123', '2025-01-25 10:31:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (132, 'PO0124', '2025-01-27 10:32:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (133, 'PO0125', '2025-03-19 11:05:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (134, 'PO0126', '2025-03-20 11:06:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (135, 'PO0127', '2025-03-21 11:07:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (136, 'PO0128', '2025-03-22 11:08:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (137, 'PO0129', '2025-03-24 11:08:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (138, 'PO0130', '2025-03-25 11:09:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (139, 'PO0131', '2025-03-26 11:09:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (140, 'PO0132', '2025-03-27 11:09:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (141, 'PO0133', '2025-03-28 11:10:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (142, 'PO0134', '2025-03-29 11:10:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (143, 'PO0135', '2025-03-31 11:11:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (144, 'PO0136', '2025-04-01 11:12:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (145, 'PO0137', '2025-04-02 11:12:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (146, 'PO0138', '2025-02-08 11:24:00', 882, 'Sagana Plantraisers', 1, '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '0.0000', 'received', 'pending', 13, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_quote_items
#

DROP TABLE IF EXISTS `sma_quote_items`;

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

INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (568, 491, 1133, '53798315', 'Thorn melon', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', NULL, '650.0000', 0, NULL, '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (569, 490, 1135, '04508794', 'chillins', 'service', 0, '700.0000', '700.0000', '19.5000', 1, '0.0000', NULL, '', '0', '0.0000', '13650.0000', NULL, '700.0000', 0, NULL, '19.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (571, 493, 1136, '12719713', 'siri', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', NULL, '650.0000', 0, NULL, '4.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (572, 494, 1137, '16566701', 's.bell propagation', 'service', NULL, '700.0000', '700.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2100.0000', NULL, '700.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (574, 496, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', NULL, '650.0000', 0, NULL, '12.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (576, 497, 1115, '18372909', 'ansal propagation', 'service', 0, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', NULL, '650.0000', 0, NULL, '11.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (577, 492, 1104, '90314158', 'cucumber', 'service', 0, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', NULL, '650.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (578, 498, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', NULL, '650.0000', 0, NULL, '11.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (579, 499, 1138, '55069376', 'kilimo propagation', 'service', NULL, '650.0000', '650.0000', '27.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17550.0000', NULL, '650.0000', 0, NULL, '27.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (580, 500, 1112, '94903006', 'harmony propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', NULL, '650.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (581, 501, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '44.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28600.0000', NULL, '650.0000', 0, NULL, '44.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 502, 1133, '53798315', 'Thorn melon', 'service', NULL, '650.0000', '650.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4550.0000', NULL, '650.0000', 0, NULL, '7.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (583, 503, 1139, '10834572', 'Celery', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', NULL, '650.0000', 0, NULL, '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (584, 504, 1138, '55069376', 'kilimo propagation', 'service', NULL, '650.0000', '650.0000', '42.5000', 1, '0.0000', NULL, '', '0', '0.0000', '27625.0000', NULL, '650.0000', 0, NULL, '42.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (585, 505, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', NULL, '650.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (586, 506, 1113, '06705895', 'squash', 'service', NULL, '650.0000', '650.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1625.0000', NULL, '650.0000', 0, NULL, '2.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (587, 507, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', NULL, '650.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (590, 510, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', NULL, '650.0000', 0, NULL, '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, 508, 1101, '42441894', 'star 9065', 'service', 0, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', NULL, '650.0000', 0, NULL, '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (593, 512, 1135, '04508794', 'chillins propagation', 'service', NULL, '700.0000', '700.0000', '19.5000', 1, '0.0000', NULL, '', '0', '0.0000', '13650.0000', NULL, '700.0000', 0, NULL, '19.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, 513, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', NULL, '650.0000', 0, NULL, '11.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (595, 514, 1117, '27618411', 'rambo propagation', 'service', NULL, '650.0000', '650.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3250.0000', NULL, '650.0000', 0, NULL, '5.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (596, 515, 1127, '33533655', 'mila propagation', 'service', NULL, '650.0000', '650.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', NULL, '650.0000', 0, NULL, '12.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (597, 516, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', NULL, '650.0000', 0, NULL, '4.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (598, 517, 1129, '44258810', 'kibostar propagation', 'service', NULL, '650.0000', '650.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', NULL, '650.0000', 0, NULL, '10.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, 520, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '32.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20800.0000', NULL, '650.0000', 0, NULL, '32.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (602, 521, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', NULL, '650.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, 522, 1131, '09465263', 'max', 'service', NULL, '650.0000', '650.0000', '34.5000', 1, '0.0000', NULL, '', '0', '0.0000', '22425.0000', NULL, '650.0000', 0, NULL, '34.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (604, 523, 1114, '05555063', 'star 9065 propagation', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', NULL, '650.0000', 0, NULL, '4.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 524, 1132, '38049398', 'To 135', 'service', NULL, '650.0000', '650.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', NULL, '650.0000', 0, NULL, '8.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (606, 525, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '975.0000', NULL, '650.0000', 0, NULL, '1.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (607, 526, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', NULL, '650.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (608, 527, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', NULL, '650.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (609, 528, 1099, '37493378', 'nova propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', NULL, '650.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (610, 529, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', NULL, '1900.0000', 5, 'Try', '10.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (612, 530, 1128, '00367070', 'commando propagation', 'service', 0, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', NULL, '650.0000', 0, NULL, '6.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (613, 531, 1122, '75722675', 'Rionex propagation', 'service', NULL, '650.0000', '650.0000', '19.5000', 1, '0.0000', NULL, '', '0', '0.0000', '12675.0000', NULL, '650.0000', 0, NULL, '19.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 532, 1134, '95195228', 'Long purple', 'service', 0, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', NULL, '650.0000', 0, NULL, '11.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (616, 533, 1111, '42936668', 'crown propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', NULL, '650.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 534, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '8.5000', 1, '0.0000', NULL, '', '0', '0.0000', '5525.0000', NULL, '650.0000', 0, NULL, '8.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 535, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '8.5000', 1, '0.0000', NULL, '', '0', '0.0000', '5525.0000', NULL, '650.0000', 0, NULL, '8.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 536, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8550.0000', NULL, '1900.0000', 5, 'Try', '4.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (620, 518, 1112, '94903006', 'harmony propagation', 'service', 0, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', NULL, '650.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 518, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', NULL, '1900.0000', 5, 'Try', '2.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 518, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', NULL, '650.0000', 0, NULL, '4.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 537, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', '48000.0000', NULL, '800.0000', 5, 'Try', '60.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (624, 538, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', NULL, '1900.0000', 5, 'Try', '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (628, 542, 1143, '82513503', 'lettuce', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', NULL, '650.0000', 0, NULL, '12.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (629, 542, 1143, '82513503', 'lettuce', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', NULL, '650.0000', 0, NULL, '12.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (630, 543, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', NULL, '650.0000', 0, NULL, '11.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (631, 544, 1103, '50953718', 'commandant', 'service', NULL, '700.0000', '700.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3850.0000', NULL, '700.0000', 0, NULL, '5.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (632, 545, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', NULL, '650.0000', 0, NULL, '12.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (633, 546, 1124, '80606522', 'victory yellow', 'service', NULL, '700.0000', '700.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3850.0000', NULL, '700.0000', 0, NULL, '5.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (634, 546, 1125, '72976730', 'victory red', 'service', NULL, '700.0000', '700.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1050.0000', NULL, '700.0000', 0, NULL, '1.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (635, 547, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9100.0000', NULL, '650.0000', 0, NULL, '14.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (636, 547, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', NULL, '650.0000', 0, NULL, '3.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (637, 548, 1109, '91872895', 'royal propagation', 'service', NULL, '650.0000', '650.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3575.0000', NULL, '650.0000', 0, NULL, '5.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (638, 549, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '21.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13650.0000', NULL, '650.0000', 0, NULL, '21.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (639, 550, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3575.0000', NULL, '650.0000', 0, NULL, '5.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (640, 551, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', '12350.0000', NULL, '650.0000', 0, NULL, '19.0000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (641, 552, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', NULL, '650.0000', 0, NULL, '12.5000', NULL, NULL, NULL, NULL);
INSERT INTO `sma_quote_items` (`id`, `quote_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`) VALUES (642, 553, 1145, '20805446', 'ranger propagation', 'service', NULL, '650.0000', '650.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', '12350.0000', NULL, '650.0000', 0, NULL, '19.0000', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_quotes
#

DROP TABLE IF EXISTS `sma_quotes`;

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

INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (490, '2025-02-01 11:52:00', 'QUOTE0488', 1271, 'Mary Mugo', 1, 3, 'Sagana Plantraisers', '&lt;p&gt;to be collected after 45 days&lt;&sol;p&gt;', NULL, '13650.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13650.0000', 'completed', 3, 3, '2025-02-18 11:58:50', NULL, 0, NULL, 'b3d9ebc6aa4d670452aa5642e156879351623e147c76cecb5dfa75186fe0e9aa', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (491, '2025-02-01 11:56:00', 'QUOTE0489', 1270, 'Jane Wanjiru', 1, 3, 'Sagana Plantraisers', '&lt;p&gt;to be collected after 21 days&lt;&sol;p&gt;', NULL, '1300.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '5faf00b121ccd27266af9d87d4905a0fd3a2cce880d81b2bb19ca947aacffc2b', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (492, '2025-02-03 12:02:00', 'QUOTE0490', 1185, 'SIMON MUTHIKE', 1, 3, 'Sagana Plantraisers', '&lt;p&gt;to be collected after 21 days&nbsp;&lt;&sol;p&gt;', NULL, '2600.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 3, 3, '2025-02-18 12:45:22', NULL, 0, NULL, 'f0cd38ff75f5f6be1bb4aa29dbbeb7396baff7566a3dd6ee85c10ef49f228a70', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (493, '2025-02-03 12:03:00', 'QUOTE0491', 1272, 'Richard Hoho', 1, 3, 'Sagana Plantraisers', '&lt;p&gt;to be coolected after 28 days&lt;&sol;p&gt;', NULL, '2925.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'a199f5c1ecb4da0cb47c8466d27e04e7d25ee5c813847fc1a2243ff66053aba3', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (494, '2025-02-07 12:29:00', 'QUOTE0492', 1273, 'Derrick Kangangi', 1, 3, 'Sagana Plantraisers', '', NULL, '2100.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'eb870bd02543cb83439c7149500460fe0a39cae3c6fcdb5286a636b328326255', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (496, '2025-02-07 12:32:00', 'QUOTE0494', 1206, 'Nicholas muthii', 1, 3, 'Sagana Plantraisers', '', NULL, '7800.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'efc8e16a795e1e6d863bbc06709030dd24f2d113837cead38984a7054a42797b', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (497, '2025-02-10 12:44:00', 'QUOTE0495', 1291, 'John warui', 1, 3, 'Sagana Plantraisers', '', NULL, '7475.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 3, 3, '2025-02-18 12:45:00', NULL, 0, NULL, 'c959cc322cd88d908ad4a6ffe1e99b1fad0f324d38737b0834d0a4409be64bde', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (498, '2025-02-10 12:47:00', 'QUOTE0496', 1292, 'Elijah maina', 1, 3, 'Sagana Plantraisers', '', NULL, '7475.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'a6c1cc9fc95349f8a7c8d45a62f680decb3b03f2694b7544a9aaa3963f051146', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (499, '2025-02-10 12:50:00', 'QUOTE0497', 1293, 'eric wachira', 1, 3, 'Sagana Plantraisers', '', NULL, '17550.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17550.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '7591fd3e55feef012fbacb0144e12a1bb84d0fd6322aa92547ea44e48a9c336d', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (500, '2025-02-12 12:54:00', 'QUOTE0498', 918, 'Miringu', 1, 3, 'Sagana Plantraisers', '', NULL, '2600.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '288e24cd40d87bb07be2179ece8a2abd682f33bb5446dd868a593d1c53097617', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (501, '2025-02-12 12:55:00', 'QUOTE0499', 1175, 'zachary kithaka', 1, 3, 'Sagana Plantraisers', '', NULL, '28600.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28600.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'dac4d8cafb491029f87463765ddb05b9d7d4670e8fa8a07f1c5b94c58d03a582', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (502, '2025-02-13 12:59:00', 'QUOTE0500', 1264, 'Simon Muchoki', 1, 3, 'Sagana Plantraisers', '', NULL, '4550.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4550.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '36f6f8602b772b464829830fe75167048e4beee3e4d07bc7c94630fb74893a07', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (503, '2025-02-13 13:02:00', 'QUOTE0501', 1294, 'charles karangi', 1, 3, 'Sagana Plantraisers', '', NULL, '1300.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '44c0ef281cddd099794586ff0c5a8f0c943d5a6b9ededc29769790d4da934d27', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (504, '2025-02-13 13:07:00', 'QUOTE0502', 1295, 'mucogia', 1, 3, 'Sagana Plantraisers', '', NULL, '27625.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27625.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'a724efe11c30ec2663b2edbea19f1f29b89369ace170061c266608784376d90c', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (505, '2025-02-14 13:14:00', 'QUOTE0503', 1296, 'David njeru cucumber', 1, 3, 'Sagana Plantraisers', '', NULL, '2600.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, '76351d38dfb84bdea0c47ad64fb840fb28e8924ff6e82254d44c793dc59da87b', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (506, '2025-02-14 13:15:00', 'QUOTE0504', 1297, 'Grace Wambui', 1, 3, 'Sagana Plantraisers', '', NULL, '1625.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1625.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'cf12f09456ef4df812610771225fdbe32cbfd836fc35259b1094ff528ed4b976', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (507, '2025-02-17 13:18:00', 'QUOTE0505', 1298, 'George wamwea', 1, 3, 'Sagana Plantraisers', '', NULL, '1950.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'c1580718fe8fa29ed7f73bd9d22d692416f5954707794fce79d4536cb4935f05', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (508, '2025-02-17 13:20:00', 'QUOTE0506', 465, 'Mwaii', 1, 3, 'Sagana Plantraisers', '', NULL, '1300.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 3, 3, '2025-02-18 13:24:18', NULL, 0, NULL, '5f8e103df7222e96d38aef0471e64bd8eefe10842d80fbe0ae9e1ba80e434fdf', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (510, '2025-02-14 13:23:00', 'QUOTE0508', 1299, 'Gatimu', 1, 3, 'Sagana Plantraisers', '', NULL, '1300.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 3, NULL, NULL, NULL, 0, NULL, 'e8070bfe656ab6893ae1756d60482f1f4bf43a5576135614618fb3f0a3820f47', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (512, '0000-00-00 00:00:00', 'QUOTE0510', 1271, 'Mary Mugo', 1, 3, 'Sagana Plantraisers', '', NULL, '13650.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13650.0000', 'pending', 13, NULL, NULL, NULL, 0, NULL, '1ab685bcee2ca0462bc6f99ab4b5a8337386ba1e7865bec42c64f40f050a113e', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (513, '2025-02-07 09:13:00', 'QUOTE0511', 1307, 'anthony (0702577229)', 1, 3, 'Sagana Plantraisers', '', NULL, '7475.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '4e3134ea7f79e052772537e6446ac1c34e020fe7e0909ac9d7a9d11b3db44d3a', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (514, '2025-01-21 09:19:00', 'QUOTE0512', 1067, 'John Githu', 1, 3, 'Sagana Plantraisers', '', NULL, '3250.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'e81448ee9d701b1dcab2d67f05cb0839d35cf0d94f25e05796c51a03a3224e25', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (515, '2025-01-21 09:21:00', 'QUOTE0513', 1054, 'Ibra', 1, 3, 'Sagana Plantraisers', '', NULL, '7800.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '30ee1dcce98b63eada124f9d40cd8d94a61b3b4d06b49574d4fd1d4e0a1fea69', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (516, '2025-01-21 09:23:00', 'QUOTE0514', 788, 'Paul', 1, 3, 'Sagana Plantraisers', '', NULL, '2925.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'f842e3e6c62c4f6c47be34d0f59976a650042d26bd5250d0a7c3cb226eae4dfe', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (517, '2025-01-23 09:26:00', 'QUOTE0515', 1260, 'John mwangi', 1, 3, 'Sagana Plantraisers', '', NULL, '6500.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6500.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'd5820e80f2110818e3d0fd0405b65f3558cf6910b4d7d43306c0a9a7f158b103', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (518, '2025-01-24 12:25:00', 'QUOTE0516', 142, 'Stanely Gitari', 1, 3, 'Sagana Plantraisers', '', NULL, '9000.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9000.0000', 'completed', 13, 13, '2025-02-25 16:35:22', NULL, 0, NULL, '075059a34ebf3863b7b0bf49238e306092bbf714705363b775377d27bfa0cd4e', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (520, '2025-01-24 12:29:00', 'QUOTE0518', 1107, 'elijah gitari', 1, 3, 'Sagana Plantraisers', '&lt;p&gt;3 trays germination was poor&lt;&sol;p&gt;', NULL, '20800.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20800.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '3a61ea6b310b11798b9d246bc50d11136dbdcccbafb260bbe32444253a0420b9', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (521, '2025-01-24 12:35:00', 'QUOTE0519', 1155, 'Duncan Kariuki', 1, 3, 'Sagana Plantraisers', '', NULL, '3900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 13, NULL, NULL, NULL, 0, NULL, '8540cef42b9231712560d6e2077e131bcab152e11259439a8bd09513dd40b9cf', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (522, '2025-01-28 12:38:00', 'QUOTE0520', 1008, 'beth', 1, 3, 'Sagana Plantraisers', '', NULL, '22425.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22425.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'd2b455137f4917c880a192fb416f0fa8a11ca84873880158149cd000b133f5b1', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (523, '2025-01-28 12:40:00', 'QUOTE0521', 465, 'Mwaii', 1, 3, 'Sagana Plantraisers', '', NULL, '2925.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'd8c2a7ed100e3e22cc97d1ac7a080ec446c91144742866d50b88b2bfb8905e01', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (524, '2025-01-28 12:41:00', 'QUOTE0522', 1263, 'Wa Migwi', 1, 3, 'Sagana Plantraisers', '', NULL, '5200.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'f65314f2090c6866790878c58f236d655797aecd9b4c16c50403b538d725bb50', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (525, '2025-01-28 12:45:00', 'QUOTE0523', 198, 'Samuel Kamau', 1, 3, 'Sagana Plantraisers', '', NULL, '975.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '975.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '5d6705ffea7ea58be56a1aefa13aa1b7fc11e8727dcba98cd99d767d073d913f', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (526, '2025-01-29 12:47:00', 'QUOTE0524', 1266, 'Titus Mwangi', 1, 3, 'Sagana Plantraisers', '', NULL, '3900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'ac9de18e854db0d4d6fd427ca832caceebb611720bbbc239852339af04ad93ad', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (527, '2025-01-29 12:50:00', 'QUOTE0525', 341, 'Joel  Kihohia', 1, 3, 'Sagana Plantraisers', '', NULL, '3900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'a26138caa4d6beb3b433ec0dc100704dcd92763ca87a7925a795bd674aff9155', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (528, '2025-01-30 12:59:00', 'QUOTE0526', 1267, 'Moses Njega', 1, 3, 'Sagana Plantraisers', '', NULL, '3900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '0e1974b8d00f8341c0e32cb3bd13039e8e6504692b31e9ce0be04d1c27c9f427', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (529, '2025-02-19 16:30:00', 'QUOTE0527', 1311, 'Joseph mureithi', 1, 3, 'Sagana Plantraisers', '', NULL, '19000.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '1241c5d89635468e5b26b25201f4f03b3730213464afb17b6811023cf0361f54', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (530, '2024-12-17 17:04:00', 'QUOTE0528', 1313, 'kaminja', 1, 3, 'Sagana Plantraisers', '', NULL, '3900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 13, 13, '2025-02-19 17:05:32', NULL, 0, NULL, '3fc4539396af15604092f3505554ef2b0e95080f405a7d3b54438b2927f76ea3', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (531, '2025-01-30 11:13:00', 'QUOTE0529', 1159, 'Anthhony murimi', 1, 3, 'Sagana Plantraisers', '', NULL, '12675.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12675.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '3229e6a7ebb806f00dfa352ff8fbb3f5ce0820a24391b9bc512a8a61ee595372', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (532, '2025-01-31 11:36:00', 'QUOTE0530', 1268, 'Samuel  Kangeche', 1, 3, 'Sagana Plantraisers', '', NULL, '7475.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 13, 13, '2025-02-20 11:37:28', NULL, 0, NULL, 'b838766a9500e2947acd3d2aac359ce7ff599d1cafedd4388434abfd11f746fb', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (533, '2025-01-31 11:38:00', 'QUOTE0531', 1269, 'Stanley Wachira', 1, 3, 'Sagana Plantraisers', '', NULL, '1950.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '00202cad16c41512a26f3a86a7b2c19df04f75c6e71fec8ab376f4c7a67b30ea', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (534, '2025-01-23 16:08:00', 'QUOTE0532', 1262, 'James Gachoki', 1, 3, 'Sagana Plantraisers', '', NULL, '5525.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5525.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'dab93937ae8b8f49c081fc4c8bc308cb739805da006bfffacf6deaa860e5dbd8', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (535, '2025-01-23 16:10:00', 'QUOTE0533', 1262, 'James Gachoki', 1, 3, 'Sagana Plantraisers', '', NULL, '5525.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5525.0000', 'pending', 13, NULL, NULL, NULL, 0, NULL, 'b39b4879d706cf017dd18e2a8c016a6869f6577d601a6fa18464d8be02a93e68', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (536, '2025-01-21 16:29:00', 'QUOTE0534', 788, 'Paul', 1, 3, 'Sagana Plantraisers', '', NULL, '8550.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8550.0000', 'pending', 13, NULL, NULL, NULL, 0, NULL, '11015c87b886c23eef989cbc7e713f2c911817b4668c413ce79be7c0ada257b4', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (537, '2025-02-27 14:55:00', 'QUOTE0535', 1168, 'Macharia safania', 1, 3, 'Sagana Plantraisers', '', NULL, '48000.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48000.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '237aad928c657d8e0ba18e8757f9a19045c2792c55269a6ca409a6c4952bea77', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (538, '2025-02-27 15:05:00', 'QUOTE0536', 1344, 'Anthony Mwangi', 1, 3, 'Sagana Plantraisers', '', NULL, '5700.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'd815df51c24dcc251e2d7605e149f7d783a4c6f09784fd2afe4edd271b2f1161', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (542, '2025-02-20 12:28:00', 'QUOTE0540', 1356, 'joan', 1, 3, 'Sagana Plantraisers', '', NULL, '16250.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16250.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '592287096fe61585cbecb53a61f544bf36b69df5a7729f5e0e19e82978e18c71', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (543, '2025-02-20 12:32:00', 'QUOTE0541', 841, 'Shalom', 1, 3, 'Sagana Plantraisers', '', NULL, '7475.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '59cd1150f88650d29eed189a755affa3825aaa782d0645cf94cafe98e471f37b', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (544, '2025-02-24 12:33:00', 'QUOTE0542', 1357, 'kangara', 1, 3, 'Sagana Plantraisers', '', NULL, '3850.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3850.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'a2ad2a7fb7ff6171f5dd27a2e0f9e3ba0c3a04e93f417f1c1af59098f1f5a00d', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (545, '2025-03-06 18:18:00', 'QUOTE0543', 1395, 'douglas wachira', 1, 3, 'Sagana Plantraisers', '', NULL, '8125.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8125.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'df9f7c5fb107c38280d75e8b58448ac9ae4fb28ec54227a3357539a64e2f7ff1', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (546, '2025-01-18 18:28:00', 'QUOTE0544', 1256, 'muriithi maringa', 1, 3, 'Sagana Plantraisers', '', NULL, '4900.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4900.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'c8e56340af04bdd27c8804d2eb27021e2f3a8b2c9f4f29f7f79cc3085ab15c99', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (547, '2025-03-03 11:21:00', 'QUOTE0545', 1419, 'Joseph nyamu', 1, 3, 'Sagana Plantraisers', '', NULL, '11050.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11050.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '8a0cc878c4a31ea61f75e1ef7beae6e831859b361ddf3f993e356d9d406098b9', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (548, '2025-03-05 11:33:00', 'QUOTE0546', 1358, 'julius 0723633626', 1, 3, 'Sagana Plantraisers', '', NULL, '3575.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3575.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'b740d2d485789dd23e74688efdf2af4e14dd4a5e52077a11cb5df226f4740c70', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (549, '2025-03-07 11:36:00', 'QUOTE0547', 1257, 'Gatero', 1, 3, 'Sagana Plantraisers', '', NULL, '13650.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13650.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '0a54451c2f918078a7061e7cba37172f333ca5000eb58583f16bf61e26253f47', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (550, '2025-03-07 11:37:00', 'QUOTE0548', 1258, 'Raphael muiruri', 1, 3, 'Sagana Plantraisers', '', NULL, '3575.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3575.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '760bece52a98d5d9921236d07d1bd7ec5d234654d2f0e4ff5f3e95e91babc6b4', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (551, '2025-03-07 11:39:00', 'QUOTE0549', 1420, 'Thomas murage', 1, 3, 'Sagana Plantraisers', '', NULL, '12350.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12350.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '201896fee315425b7eeec117c25c01f5e7c00de3340c57c228b6b6ad9e4f9cdd', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (552, '2025-03-07 12:01:00', 'QUOTE0550', 1421, 'Douglas 0723839544', 1, 3, 'Sagana Plantraisers', '', NULL, '8125.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8125.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, '3cdb72c5c7bbaffdf27ab32524e64a93bf86f0041802794ebc6a1774f5ec075b', NULL, NULL, NULL);
INSERT INTO `sma_quotes` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `warehouse_id`, `biller_id`, `biller`, `note`, `internal_note`, `total`, `product_discount`, `order_discount`, `order_discount_id`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `supplier_id`, `supplier`, `hash`, `cgst`, `sgst`, `igst`) VALUES (553, '2025-02-18 10:50:00', 'QUOTE0551', 1529, 'Nancy muchira', 1, 3, 'Sagana Plantraisers', '', NULL, '12350.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12350.0000', 'completed', 13, NULL, NULL, NULL, 0, NULL, 'e8f0346be054c7812aa16128500fcdbd54d55af3c4ff910d914a3806a488d888', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_return_items
#

DROP TABLE IF EXISTS `sma_return_items`;

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

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 (1, 1, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', 5, 'Try', '2.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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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 (1, '0000-00-00 00:00:00', 'SR0001', 1196, 'Florence', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '3800.0000', 13, NULL, NULL, 2, '0.0000', '0.0000', NULL, '1bc8fb11b690d96503a2a0972b6dc19325d8b05e67c33b8bdf94bdf9bcbf09da', 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=InnoDB AUTO_INCREMENT=4117 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2998, 1695, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '16.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30400.0000', '', '1900.0000', NULL, 5, 'Try', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3002, 1699, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3003, 1700, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3004, 1701, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3017, 1710, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3024, 1717, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3026, 1719, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3029, 1721, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '4750.0000', '', '1900.0000', NULL, 5, 'Try', '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3030, 1722, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '21.0000', 1, '0.0000', NULL, '', '0', '0.0000', '39900.0000', '', '1900.0000', NULL, 5, 'Try', '21.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3033, 1724, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3037, 1727, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '90.0000', 1, '0.0000', NULL, '', '0', '0.0000', '171000.0000', '', '1900.0000', NULL, 5, 'Try', '90.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3038, 1728, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.2500', 1, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '1000.0000', NULL, 5, 'Try', '2.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3040, 1729, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3042, 1730, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3044, 1731, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '26600.0000', '', '1900.0000', NULL, 5, 'Try', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3049, 1735, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24700.0000', '', '1900.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3050, 1736, 1101, '42441894', 'star 9065', 'service', 0, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, NULL, NULL, '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3051, 1737, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '650.0000', NULL, NULL, NULL, '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3053, 1739, 1113, '06705895', 'squash', 'service', NULL, '650.0000', '650.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1625.0000', '', '650.0000', NULL, NULL, NULL, '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3054, 1740, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3055, 1741, 1139, '10834572', 'Celery', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, NULL, NULL, '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3056, 1742, 1138, '55069376', 'kilimo propagation', 'service', NULL, '650.0000', '650.0000', '42.5000', 1, '0.0000', NULL, '', '0', '0.0000', '27625.0000', '', '650.0000', NULL, NULL, NULL, '42.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3057, 1743, 1133, '53798315', 'Thorn melon', 'service', NULL, '650.0000', '650.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4550.0000', '', '650.0000', NULL, NULL, NULL, '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 (3058, 1744, 1133, '53798315', 'Thorn melon', 'service', NULL, '650.0000', '650.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4550.0000', '', '650.0000', NULL, NULL, NULL, '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 (3059, 1745, 1133, '53798315', 'Thorn melon', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, NULL, NULL, '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3060, 1746, 1136, '12719713', 'siri', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', '', '650.0000', NULL, NULL, NULL, '4.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3067, 1753, 1138, '55069376', 'kilimo propagation', 'service', NULL, '650.0000', '650.0000', '42.5000', 1, '0.0000', NULL, '', '0', '0.0000', '27625.0000', '', '650.0000', NULL, NULL, NULL, '42.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3070, 1756, 1127, '33533655', 'mila propagation', 'service', NULL, '650.0000', '650.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '650.0000', NULL, NULL, NULL, '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 (3076, 1762, 1131, '09465263', 'max', 'service', NULL, '650.0000', '650.0000', '34.5000', 1, '0.0000', NULL, '', '0', '0.0000', '22425.0000', '', '650.0000', NULL, NULL, NULL, '34.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3077, 1763, 1114, '05555063', 'star 9065 propagation', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', '', '650.0000', NULL, NULL, NULL, '4.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3079, 1765, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '975.0000', '', '650.0000', NULL, NULL, NULL, '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3080, 1766, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '650.0000', NULL, NULL, NULL, '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 (3083, 1755, 1117, '27618411', 'rambo propagation', 'service', NULL, '650.0000', '650.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3250.0000', '', '650.0000', NULL, NULL, NULL, '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3084, 1769, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3085, 1769, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3086, 1770, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1000.0000', NULL, 5, 'Try', '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3087, 1771, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3088, 1771, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3091, 1774, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3093, 1776, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3096, 1779, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '38.0000', 1, '0.0000', NULL, '', '0', '0.0000', '72200.0000', '', '1900.0000', NULL, 5, 'Try', '38.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3097, 1780, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3098, 1781, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3101, 1759, 1112, '94903006', 'harmony propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3102, 1759, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3109, 1788, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3110, 1789, 1122, '75722675', 'Rionex propagation', 'service', NULL, '650.0000', '650.0000', '19.5000', 1, '0.0000', NULL, '', '0', '0.0000', '12675.0000', '', '650.0000', NULL, NULL, NULL, '19.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3111, 1790, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3112, 1791, 1134, '95195228', 'Long purple', 'service', 0, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', '', '650.0000', NULL, NULL, NULL, '11.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3118, 1797, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '800.0000', NULL, 5, 'Try', '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 (3119, 1798, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '10400.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3121, 1800, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3129, 1808, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24700.0000', '', '1900.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3137, 1816, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '110.0000', 1, '0.0000', NULL, '', '0', '0.0000', '209000.0000', '', '1900.0000', NULL, 5, 'Try', '110.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3138, 1758, 1129, '44258810', 'kibostar propagation', 'service', NULL, '650.0000', '650.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '650.0000', NULL, NULL, NULL, '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3140, 1818, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9100.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3141, 1819, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3145, 1823, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3148, 1825, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '1000.0000', NULL, 5, 'Try', '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3152, 1828, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3156, 1830, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3157, 1830, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3160, 1831, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3161, 1831, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3165, 1835, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3169, 1838, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3172, 1840, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '16.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30400.0000', '', '1900.0000', NULL, 5, 'Try', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3173, 1841, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3174, 1842, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '26600.0000', '', '1900.0000', NULL, 5, 'Try', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3176, 1844, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3177, 1845, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.3000', 1, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '1000.0000', NULL, 5, 'Try', '0.3000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3180, 1848, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '950.0000', '', '1900.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3181, 1849, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3182, 1850, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3183, 1851, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3187, 1854, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24700.0000', '', '1900.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3188, 1853, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3189, 1855, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3190, 1856, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '800.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3191, 1857, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3192, 1794, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3195, 1859, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.3000', 1, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '1000.0000', NULL, 5, 'Try', '0.3000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3196, 1860, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3197, 1860, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3199, 1862, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3200, 1863, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '1000.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3203, 1866, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3204, 1866, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3206, 1852, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '26600.0000', '', '1900.0000', NULL, 5, 'Try', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3207, 1787, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3224, 1880, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3225, 1879, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '8.5000', 1, '0.0000', NULL, '', '0', '0.0000', '5525.0000', '', '650.0000', NULL, NULL, NULL, '8.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3227, 1881, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3229, 1883, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3230, 1883, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3231, 1884, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '80.0000', 1, '0.0000', NULL, '', '0', '0.0000', '152000.0000', '', '1900.0000', NULL, 5, 'Try', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3239, 1888, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3240, 1888, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.0550', 1, '0.0000', NULL, '', '0', '0.0000', '42.0000', '', '700.0000', NULL, 5, 'Try', '0.0600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3241, 1888, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.0600', 1, '0.0000', NULL, '', '0', '0.0000', '48.0000', '', '800.0000', NULL, 5, 'Try', '0.0600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3243, 1890, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '10000.0000', '', '1000.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3245, 1891, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3248, 1893, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3249, 1892, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3254, 1898, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3255, 1898, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3256, 1898, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.3000', 1, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '1000.0000', NULL, 5, 'Try', '0.3000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3257, 1898, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '800.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3258, 1899, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3259, 1900, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3260, 1900, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3262, 1902, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1000', 1, '0.0000', NULL, '', '0', '0.0000', '70.0000', '', '700.0000', NULL, 5, 'Try', '0.1000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3263, 1903, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3264, 1904, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3269, 1909, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3272, 1912, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3273, 1913, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3275, 1915, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3277, 1917, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3279, 1919, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3285, 1921, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3286, 1921, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3287, 1920, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '26.0000', 1, '0.0000', NULL, '', '0', '0.0000', '49400.0000', '', '1900.0000', NULL, 5, 'Try', '26.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3288, 1920, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3289, 1920, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3291, 1922, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3294, 1924, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3295, 1923, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3296, 1925, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3297, 1926, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', '', '650.0000', NULL, NULL, NULL, '4.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3298, 1927, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3299, 1927, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3300, 1927, 1112, '94903006', 'harmony propagation', 'service', 0, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3303, 1929, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3307, 1931, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3308, 1932, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3312, 1935, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3321, 1943, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3322, 1944, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3323, 1944, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.0625', 1, '0.0000', NULL, '', '0', '0.0000', '48.0000', '', '800.0000', NULL, 5, 'Try', '0.0600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3324, 1945, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3325, 1945, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3326, 1945, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3327, 1945, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3328, 1732, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3329, 1946, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3331, 1948, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3334, 1950, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3337, 1953, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3338, 1954, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.2632', 1, '0.0000', NULL, '', '0', '0.0000', '494.0000', '', '1900.0000', NULL, 5, 'Try', '0.2600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3339, 1955, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3340, 1955, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3343, 1958, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '800.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3344, 1959, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3345, 1960, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3348, 1962, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3349, 1963, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3350, 1964, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3351, 1965, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3355, 1967, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2800', 1, '0.0000', NULL, '', '0', '0.0000', '196.0000', '', '700.0000', NULL, 5, 'Try', '0.2800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3356, 1968, 1104, '90314158', 'cucumber', 'service', 0, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3363, 1974, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3364, 1975, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3365, 1976, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3366, 1977, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '800.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3367, 1977, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3368, 1977, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3371, 1980, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3376, 1767, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '650.0000', NULL, NULL, NULL, '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 (3377, 1767, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3378, 1979, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3379, 1981, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3380, 1757, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2925.0000', '', '650.0000', NULL, NULL, NULL, '4.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3381, 1978, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3382, 1906, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '43.0000', 1, '0.0000', NULL, '', '0', '0.0000', '81700.0000', '', '1900.0000', NULL, 5, 'Try', '43.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3385, 1761, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '32.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20800.0000', '', '650.0000', NULL, NULL, NULL, '32.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3386, 1983, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3387, 1984, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3388, 1985, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3389, 1985, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3390, 1986, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3391, 1986, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.3000', 1, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '1000.0000', NULL, 5, 'Try', '0.3000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3392, 1986, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.1184', 1, '0.0000', NULL, '', '0', '0.0000', '228.0000', '', '1900.0000', NULL, 5, 'Try', '0.1200', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3393, 1987, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3400, 1993, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3401, 1994, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3403, 1996, 1143, '82513503', 'lettuce', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', '', '650.0000', NULL, NULL, NULL, '12.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3404, 1996, 1143, '82513503', 'lettuce', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', '', '650.0000', NULL, NULL, NULL, '12.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3405, 1997, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', '', '650.0000', NULL, NULL, NULL, '11.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3406, 1998, 1103, '50953718', 'commandant', 'service', NULL, '700.0000', '700.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3850.0000', '', '700.0000', NULL, NULL, NULL, '5.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3412, 2004, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3415, 2007, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3416, 2007, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3418, 2009, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2800.0000', '', '700.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3422, 2013, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3423, 2014, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3429, 2018, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3432, 2020, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3433, 2020, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3434, 2021, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3436, 2023, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3437, 2024, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3438, 2025, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3441, 2028, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3444, 2030, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3445, 2031, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '10400.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3446, 2032, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3449, 2035, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3453, 2039, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3457, 2041, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3459, 2043, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3460, 2044, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3468, 1837, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3469, 2052, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3470, 2053, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3471, 2054, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3473, 2055, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3474, 2056, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3475, 2057, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '1000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3476, 2057, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3481, 2060, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3484, 1999, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3485, 1734, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3486, 1846, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3487, 1801, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3488, 2062, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3490, 1785, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3491, 2016, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3492, 2016, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3493, 2016, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3494, 1805, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3499, 1807, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3500, 2066, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.1000', 1, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '1000.0000', NULL, 5, 'Try', '0.1000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3501, 2066, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3502, 2001, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3505, 2068, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3506, 2069, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3510, 2072, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3511, 2073, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3512, 2074, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '1000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3518, 2078, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3520, 2080, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3521, 2080, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '10400.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3524, 2083, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30000.0000', '', '1000.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3528, 2087, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3529, 2088, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '800.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3530, 2089, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3531, 1914, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3532, 2019, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3533, 2047, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3534, 1908, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3535, 2012, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3536, 2011, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3537, 2008, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3538, 2005, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3539, 2003, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3540, 2000, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3541, 1707, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3545, 1718, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3546, 1772, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3547, 1777, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '14300.0000', '', '1300.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3548, 1782, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3549, 1834, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3551, 1901, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3552, 1889, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3553, 1911, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3554, 1827, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3555, 1957, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '16000.0000', '', '800.0000', NULL, 5, 'Try', '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 (3556, 2091, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3557, 2092, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3558, 2093, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3559, 1768, 1099, '37493378', 'nova propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '650.0000', NULL, NULL, NULL, '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 (3560, 2065, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3561, 2094, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '1000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3563, 2096, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3566, 2099, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3571, 2104, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3574, 1726, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '72.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57600.0000', '', '800.0000', NULL, 5, 'Try', '72.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3575, 2106, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3576, 2107, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3578, 2108, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3580, 1715, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0810', 1, '0.0000', NULL, '', '0', '0.0000', '1404.0000', '', '1300.0000', NULL, 5, 'Try', '1.0800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3581, 2109, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3582, 2110, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3583, 2111, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', '', '650.0000', NULL, NULL, NULL, '12.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3584, 2112, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.7500', 1, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '800.0000', NULL, 5, 'Try', '0.7500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3585, 2112, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3586, 2113, 1125, '72976730', 'victory red', 'service', NULL, '700.0000', '700.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '700.0000', NULL, NULL, NULL, '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3587, 2113, 1124, '80606522', 'victory yellow', 'service', NULL, '700.0000', '700.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3850.0000', '', '700.0000', NULL, NULL, NULL, '5.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3588, 2051, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3589, 1867, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '70.0000', 1, '0.0000', NULL, '', '0', '0.0000', '133000.0000', '', '1900.0000', NULL, 5, 'Try', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3590, 1795, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8550.0000', '', '1900.0000', NULL, 5, 'Try', '4.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3591, 2006, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24000.0000', '', '800.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3592, 2006, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '700.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3593, 2006, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.5620', 1, '0.0000', NULL, '', '0', '0.0000', '448.0000', '', '800.0000', NULL, 5, 'Try', '0.5600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3594, 2042, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3596, 2115, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3597, 2116, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3598, 1843, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3599, 1796, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '27.0000', 1, '0.0000', NULL, '', '0', '0.0000', '51300.0000', '', '1900.0000', NULL, 5, 'Try', '27.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3600, 2117, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3601, 1817, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '12000.0000', '', '2000.0000', NULL, 5, 'Try', '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 (3602, 2015, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3606, 2121, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3607, 2122, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3608, 2123, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3609, 2124, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3610, 2119, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '44.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28600.0000', '', '650.0000', NULL, NULL, NULL, '44.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3611, 2125, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3612, 2126, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3614, 2127, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3615, 2128, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3616, 2129, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3617, 1836, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3619, 1749, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', '', '650.0000', NULL, NULL, NULL, '11.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3621, 2022, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3622, 2037, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3625, 2040, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3626, 2040, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3627, 1750, 1115, '18372909', 'ansal propagation', 'service', 0, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', '', '650.0000', NULL, NULL, NULL, '11.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3628, 1747, 1137, '16566701', 's.bell propagation', 'service', NULL, '700.0000', '700.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '700.0000', NULL, NULL, NULL, '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3629, 2045, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3630, 1934, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3631, 2002, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3632, 2026, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3635, 2010, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3637, 2131, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.5142', 1, '0.0000', NULL, '', '0', '0.0000', '357.0000', '', '700.0000', NULL, 5, 'Try', '0.5100', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3638, 2131, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.7500', 1, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '800.0000', NULL, 5, 'Try', '0.7500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3639, 2082, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3640, 2130, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3646, 2067, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '0.7500', 1, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '800.0000', NULL, 5, 'Try', '0.7500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3647, 2067, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.0015', 1, '0.0000', NULL, '', '0', '0.0000', '0.0000', '', '1000.0000', NULL, 5, 'Try', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3648, 2136, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0540', 1, '0.0000', NULL, '', '0', '0.0000', '1995.0000', '', '1900.0000', NULL, 5, 'Try', '1.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3651, 2138, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3652, 2139, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3653, 2139, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13000.0000', '', '1300.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3654, 2140, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3656, 1764, 1132, '38049398', 'To 135', 'service', NULL, '650.0000', '650.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '650.0000', NULL, NULL, NULL, '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 (3657, 1754, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '11.5000', 1, '0.0000', NULL, '', '0', '0.0000', '7475.0000', '', '650.0000', NULL, NULL, NULL, '11.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3658, 2141, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3659, 1792, 1111, '42936668', 'crown propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '650.0000', NULL, NULL, NULL, '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3660, 2142, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '0.5750', 1, '0.0000', NULL, '', '0', '0.0000', '456.0000', '', '800.0000', NULL, 5, 'Try', '0.5700', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3661, 2143, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3665, 1752, 1112, '94903006', 'harmony propagation', 'service', NULL, '650.0000', '650.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, NULL, NULL, '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3670, 2144, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '1000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3671, 2075, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', '114000.0000', '', '1900.0000', NULL, 5, 'Try', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3672, 1716, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3674, 2145, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3675, 2146, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '45.0000', 1, '0.0000', NULL, '', '0', '0.0000', '36000.0000', '', '800.0000', NULL, 5, 'Try', '45.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3676, 2147, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3677, 2148, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', '114000.0000', '', '1900.0000', NULL, 5, 'Try', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3678, 1714, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3679, 1938, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3680, 2149, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3681, 2150, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3684, 2152, 1109, '91872895', 'royal propagation', 'service', NULL, '650.0000', '650.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3575.0000', '', '650.0000', NULL, NULL, NULL, '5.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3685, 2151, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '650.0000', NULL, NULL, NULL, '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3686, 2151, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9100.0000', '', '650.0000', NULL, NULL, NULL, '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3687, 2153, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '21.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13650.0000', '', '650.0000', NULL, NULL, NULL, '21.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3688, 2154, 1104, '90314158', 'cucumber', 'service', NULL, '650.0000', '650.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3575.0000', '', '650.0000', NULL, NULL, NULL, '5.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3689, 2155, 1128, '00367070', 'commando propagation', 'service', NULL, '650.0000', '650.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', '12350.0000', '', '650.0000', NULL, NULL, NULL, '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3690, 2156, 1118, '45671831', 'bareto propagation', 'service', NULL, '650.0000', '650.0000', '12.5000', 1, '0.0000', NULL, '', '0', '0.0000', '8125.0000', '', '650.0000', NULL, NULL, NULL, '12.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3691, 2157, 1109, '91872895', 'royal propagation', 'service', NULL, '650.0000', '650.0000', '5.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3575.0000', '', '650.0000', NULL, NULL, NULL, '5.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3692, 2077, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3693, 1725, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '45.0000', 1, '0.0000', NULL, '', '0', '0.0000', '85500.0000', '', '1900.0000', NULL, 5, 'Try', '45.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3694, 2158, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '4750.0000', '', '1900.0000', NULL, 5, 'Try', '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3696, 2160, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3697, 2161, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3698, 2162, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3699, 2163, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3700, 2164, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '23.0000', 1, '0.0000', NULL, '', '0', '0.0000', '43700.0000', '', '1900.0000', NULL, 5, 'Try', '23.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3701, 2165, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9000.0000', '', '1000.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3702, 1824, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3704, 2166, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3705, 2166, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2143', 1, '0.0000', NULL, '', '0', '0.0000', '147.0000', '', '700.0000', NULL, 5, 'Try', '0.2100', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3706, 2167, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3709, 1705, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '38.0000', 1, '0.0000', NULL, '', '0', '0.0000', '72200.0000', '', '1900.0000', NULL, 5, 'Try', '38.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3710, 1705, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '14000.0000', '', '2000.0000', NULL, 5, 'Try', '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 (3711, 1705, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3712, 2168, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '16.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30400.0000', '', '1900.0000', NULL, 5, 'Try', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3713, 2169, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3715, 2171, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3716, 2172, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3721, 1820, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3722, 1773, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3724, 2176, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3727, 2177, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.0780', 1, '0.0000', NULL, '', '0', '0.0000', '56.0000', '', '700.0000', NULL, 5, 'Try', '0.0800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3728, 2177, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.0680', 1, '0.0000', NULL, '', '0', '0.0000', '56.0000', '', '800.0000', NULL, 5, 'Try', '0.0700', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3729, 2174, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.0560', 1, '0.0000', NULL, '', '0', '0.0000', '42.0000', '', '700.0000', NULL, 5, 'Try', '0.0600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3731, 2178, 1135, '04508794', 'chillins', 'service', 0, '700.0000', '700.0000', '19.5000', 1, '0.0000', NULL, '', '0', '0.0000', '13650.0000', '', '700.0000', NULL, NULL, NULL, '19.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3732, 2178, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2920', 1, '0.0000', NULL, '', '0', '0.0000', '203.0000', '', '700.0000', NULL, 5, 'Try', '0.2900', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3733, 2178, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.3120', 1, '0.0000', NULL, '', '0', '0.0000', '248.0000', '', '800.0000', NULL, 5, 'Try', '0.3100', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3734, 2179, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3735, 2180, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3736, 2181, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3737, 2182, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3739, 2183, 1127, '33533655', 'mila propagation', 'service', NULL, '650.0000', '650.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '650.0000', NULL, NULL, NULL, '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 (3740, 2184, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3742, 1861, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3743, 2038, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3744, 1697, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3747, 1990, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '14.5000', 1, '0.0000', NULL, '', '0', '0.0000', '11600.0000', '', '800.0000', NULL, 5, 'Try', '14.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3748, 2185, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3749, 2186, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3750, 1886, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3751, 2187, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3752, 2188, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3754, 2190, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '2850.0000', '', '1900.0000', NULL, 5, 'Try', '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3755, 2191, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3756, 2191, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '0.0750', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '1300.0000', NULL, 5, 'Try', '0.0800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3757, 2191, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.0500', 1, '0.0000', NULL, '', '0', '0.0000', '95.0000', '', '1900.0000', NULL, 5, 'Try', '0.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3758, 2191, 1057, '20183289', 'sukuma matumbo', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3759, 2192, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3760, 2193, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3761, 2194, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3762, 2195, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3763, 2196, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3764, 2197, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3765, 2198, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3767, 2200, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3768, 2201, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3769, 2202, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3770, 2203, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3771, 2204, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3773, 2205, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.0520', 1, '0.0000', NULL, '', '0', '0.0000', '95.0000', '', '1900.0000', NULL, 5, 'Try', '0.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3775, 1918, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3776, 2206, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3777, 2207, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3778, 2207, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3780, 1708, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3784, 2208, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1275', 1, '0.0000', NULL, '', '0', '0.0000', '91.0000', '', '700.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3785, 2208, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3786, 2208, 1057, '20183289', 'sukuma matumbo', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3787, 2209, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3788, 2209, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3789, 2209, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3790, 1947, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3791, 1775, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3792, 1916, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3795, 2210, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3796, 1992, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3797, 1966, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5600.0000', '', '800.0000', NULL, 5, 'Try', '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 (3798, 1966, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3799, 1829, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3800, 2211, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3801, 2212, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '25000.0000', '', '1000.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3802, 2213, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3803, 2214, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '75.0000', 1, '0.0000', NULL, '', '0', '0.0000', '142500.0000', '', '1900.0000', NULL, 5, 'Try', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3804, 2215, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3805, 2216, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3806, 2216, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3807, 2217, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3808, 2218, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3809, 2219, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3810, 2220, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3811, 2221, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3812, 2222, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '1300.0000', NULL, 5, 'Try', '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3813, 2223, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3814, 2224, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3815, 2225, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3816, 2226, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '26600.0000', '', '1900.0000', NULL, 5, 'Try', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3817, 2227, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3818, 2228, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3819, 2229, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3820, 2230, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3821, 2231, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3823, 2233, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3824, 2234, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3825, 2235, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3826, 2236, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0250', 1, '0.0000', NULL, '', '0', '0.0000', '1326.0000', '', '1300.0000', NULL, 5, 'Try', '1.0200', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3827, 2084, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3828, 2237, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3829, 2238, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3830, 2239, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3831, 2240, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3832, 2241, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15000.0000', '', '1000.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3833, 2242, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3834, 2243, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3835, 2244, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7000.0000', '', '1000.0000', NULL, 5, 'Try', '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 (3836, 2245, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3837, 2245, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3838, 2246, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3839, 2247, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3840, 2248, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3841, 2249, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3842, 2250, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3843, 2251, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3844, 2251, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '18000.0000', '', '2000.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3845, 2252, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3846, 2253, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3847, 2254, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3848, 2255, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3849, 2256, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3850, 2257, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13000.0000', '', '1000.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3851, 2258, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3852, 2259, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3854, 2261, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3855, 2189, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3856, 2199, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3857, 2133, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3858, 2134, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3859, 2135, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3860, 2120, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.5000', 1, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '1300.0000', NULL, 5, 'Try', '1.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3861, 2137, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3862, 2137, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3863, 2079, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3865, 2100, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3866, 2102, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3867, 2103, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3869, 2105, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '38.0000', 1, '0.0000', NULL, '', '0', '0.0000', '72200.0000', '', '1900.0000', NULL, 5, 'Try', '38.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3870, 1907, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '180.0000', 1, '0.0000', NULL, '', '0', '0.0000', '342000.0000', '', '1900.0000', NULL, 5, 'Try', '180.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3871, 2263, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '18.0000', 1, '0.0000', NULL, '', '0', '0.0000', '34200.0000', '', '1900.0000', NULL, 5, 'Try', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3872, 1793, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3873, 1799, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3874, 2059, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3875, 1802, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '35.0000', 1, '0.0000', NULL, '', '0', '0.0000', '66500.0000', '', '1900.0000', NULL, 5, 'Try', '35.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3877, 1803, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3878, 1809, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24700.0000', '', '1900.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3879, 1812, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3880, 2260, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30000.0000', '', '1000.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3881, 2265, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3882, 2266, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3883, 2267, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3884, 2268, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '18.0000', 1, '0.0000', NULL, '', '0', '0.0000', '34200.0000', '', '1900.0000', NULL, 5, 'Try', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3885, 2269, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '16.0000', 1, '0.0000', NULL, '', '0', '0.0000', '30400.0000', '', '1900.0000', NULL, 5, 'Try', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3886, 2269, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3887, 2270, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3888, 2271, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3250.0000', '', '1300.0000', NULL, 5, 'Try', '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3889, 2272, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3890, 2273, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3891, 2274, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3892, 2275, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3893, 2276, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3894, 2277, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3895, 1969, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '75.0000', 1, '0.0000', NULL, '', '0', '0.0000', '60000.0000', '', '800.0000', NULL, 5, 'Try', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3896, 2278, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3897, 2279, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3898, 2279, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3899, 2280, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '27.0000', 1, '0.0000', NULL, '', '0', '0.0000', '21600.0000', '', '800.0000', NULL, 5, 'Try', '27.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3900, 2281, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3901, 2281, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3902, 2036, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '50.0000', 1, '0.0000', NULL, '', '0', '0.0000', '95000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3903, 2282, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3904, 2114, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.5000', 1, '0.0000', NULL, '', '0', '0.0000', '3250.0000', '', '1300.0000', NULL, 5, 'Try', '2.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3905, 2283, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1810', 1, '0.0000', NULL, '', '0', '0.0000', '126.0000', '', '700.0000', NULL, 5, 'Try', '0.1800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3906, 2283, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '800.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3907, 2284, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.0500', 1, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '800.0000', NULL, 5, 'Try', '0.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3908, 2285, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3909, 2286, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '800.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3910, 1988, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3911, 1988, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3912, 2287, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3914, 1738, 1115, '18372909', 'ansal propagation', 'service', NULL, '650.0000', '650.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, NULL, NULL, '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3915, 2288, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '800.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3916, 2289, 1057, '20183289', 'sukuma matumbo', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3917, 2290, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3918, 2291, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3919, 2132, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '1300.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3920, 2046, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3921, 2292, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3922, 2293, 1144, '02151959', 'BIG ROCK', 'standard', NULL, '2100.0000', '2100.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '25200.0000', '', '2100.0000', NULL, 5, 'Try', '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 (3923, 2294, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '950.0000', '', '1900.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3924, 2295, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3925, 1706, 1126, '80226308', 'zara propagation', 'service', NULL, '650.0000', '650.0000', '14.5000', 1, '0.0000', NULL, '', '0', '0.0000', '9425.0000', '', '650.0000', NULL, NULL, NULL, '14.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3926, 2296, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '800.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3927, 2297, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3928, 2298, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '1.2000', 1, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1000.0000', NULL, 5, 'Try', '1.2000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3930, 1991, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3932, 2299, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5600.0000', '', '800.0000', NULL, 5, 'Try', '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 (3933, 2071, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3934, 2300, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3935, 2301, 1106, '46426438', 'paw paws propagation', 'service', NULL, '20.0000', '20.0000', '120.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '20.0000', NULL, NULL, NULL, '120.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3936, 2302, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2500', 1, '0.0000', NULL, '', '0', '0.0000', '175.0000', '', '700.0000', NULL, 5, 'Try', '0.2500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3937, 2303, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2950', 1, '0.0000', NULL, '', '0', '0.0000', '210.0000', '', '700.0000', NULL, 5, 'Try', '0.3000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3938, 2304, 1047, '06736723', 'Queen f1 seedlings', 'standard', NULL, '800.0000', '800.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '800.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3939, 2305, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3940, 2305, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3941, 1751, 1138, '55069376', 'kilimo propagation', 'service', NULL, '650.0000', '650.0000', '27.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17550.0000', '', '650.0000', NULL, NULL, NULL, '27.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3942, 2086, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3943, 2306, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1428', 1, '0.0000', NULL, '', '0', '0.0000', '98.0000', '', '700.0000', NULL, 5, 'Try', '0.1400', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3944, 2307, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2850', 1, '0.0000', NULL, '', '0', '0.0000', '196.0000', '', '700.0000', NULL, 5, 'Try', '0.2800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3945, 2308, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1440', 1, '0.0000', NULL, '', '0', '0.0000', '98.0000', '', '700.0000', NULL, 5, 'Try', '0.1400', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3946, 2309, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15600.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3947, 2310, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3948, 2048, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3949, 2085, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3950, 2311, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3951, 2312, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3952, 2313, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.0700', 1, '0.0000', NULL, '', '0', '0.0000', '49.0000', '', '700.0000', NULL, 5, 'Try', '0.0700', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3953, 2313, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.0500', 1, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '800.0000', NULL, 5, 'Try', '0.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3955, 2314, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3956, 2315, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3957, 2316, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.2200', 1, '0.0000', NULL, '', '0', '0.0000', '154.0000', '', '700.0000', NULL, 5, 'Try', '0.2200', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3958, 2317, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3959, 1885, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3960, 1885, 1012, '14415533', 'harmony', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3961, 2318, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '0.5300', 1, '0.0000', NULL, '', '0', '0.0000', '1007.0000', '', '1900.0000', NULL, 5, 'Try', '0.5300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3962, 2319, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3963, 2320, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '16.0000', 1, '0.0000', NULL, '', '0', '0.0000', '16000.0000', '', '1000.0000', NULL, 5, 'Try', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3964, 2321, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3965, 2081, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3966, 2322, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3967, 2322, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '0.5000', 1, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '800.0000', NULL, 5, 'Try', '0.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3968, 2322, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '0.0590', 1, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '1000.0000', NULL, 5, 'Try', '0.0600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3969, 2323, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (3971, 2324, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '22.0000', 1, '0.0000', NULL, '', '0', '0.0000', '41800.0000', '', '1900.0000', NULL, 5, 'Try', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3972, 2325, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.1380', 1, '0.0000', NULL, '', '0', '0.0000', '98.0000', '', '700.0000', NULL, 5, 'Try', '0.1400', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3973, 2325, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '0.1250', 1, '0.0000', NULL, '', '0', '0.0000', '104.0000', '', '800.0000', NULL, 5, 'Try', '0.1300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3976, 2326, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3979, 2327, 1145, '20805446', 'ranger propagation', 'service', NULL, '650.0000', '650.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', '12350.0000', '', '650.0000', NULL, NULL, NULL, '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3980, 2232, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '6500.0000', '', '1300.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3981, 2328, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (3982, 2329, 1142, '73772075', 'zawadi', 'standard', NULL, '800.0000', '800.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '800.0000', NULL, 5, 'Try', '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 (3983, 2329, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3984, 2329, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '0.8570', 1, '0.0000', NULL, '', '0', '0.0000', '602.0000', '', '700.0000', NULL, 5, 'Try', '0.8600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3985, 2330, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3986, 2050, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3987, 2331, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3988, 2332, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3989, 2333, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3990, 2333, 1072, '10206750', 'spinach f1', 'standard', NULL, '800.0000', '800.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3991, 1887, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3993, 2159, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '1000.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3994, 2159, 1038, '13422071', 'sukuma', 'standard', NULL, '700.0000', '700.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3995, 2098, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3996, 2029, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3997, 1847, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3998, 2334, 1017, '16473929', ' victoria', 'standard', NULL, '800.0000', '800.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '800.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3999, 2335, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.5000', 1, '0.0000', NULL, '', '0', '0.0000', '6650.0000', '', '1900.0000', NULL, 5, 'Try', '3.5000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4000, 2336, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4001, 2337, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4003, 2338, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4004, 2339, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4005, 2340, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4006, 2341, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '19.0000', 1, '0.0000', NULL, '', '0', '0.0000', '36100.0000', '', '1900.0000', NULL, 5, 'Try', '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4007, 2342, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '70.0000', 1, '0.0000', NULL, '', '0', '0.0000', '133000.0000', '', '1900.0000', NULL, 5, 'Try', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4008, 1804, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4009, 1806, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '92.0000', 1, '0.0000', NULL, '', '0', '0.0000', '174800.0000', '', '1900.0000', NULL, 5, 'Try', '92.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4010, 1822, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4011, 1810, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4012, 1813, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4013, 2064, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '15.0000', 1, '0.0000', NULL, '', '0', '0.0000', '28500.0000', '', '1900.0000', NULL, 5, 'Try', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4014, 2063, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4015, 2343, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4016, 2344, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4017, 2345, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7800.0000', '', '1300.0000', NULL, 5, 'Try', '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 (4018, 1702, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '17.0000', 1, '0.0000', NULL, '', '0', '0.0000', '32300.0000', '', '1900.0000', NULL, 5, 'Try', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4019, 2346, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4021, 1704, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4022, 2348, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4023, 2349, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '10000.0000', '', '1000.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4026, 2350, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4027, 2350, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4030, 1748, 1111, '42936668', 'crown propagation', 'service', NULL, '650.0000', '650.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5200.0000', '', '650.0000', NULL, NULL, NULL, '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 (4031, 1748, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4032, 2351, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4033, 1720, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4034, 2352, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9100.0000', '', '1300.0000', NULL, 5, 'Try', '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 (4036, 2354, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4037, 2354, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4038, 1864, 982, '15944529', 'kibostar', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4039, 1956, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '17.0000', 1, '0.0000', NULL, '', '0', '0.0000', '32300.0000', '', '1900.0000', NULL, 5, 'Try', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4040, 1694, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4041, 2355, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '150.0000', 1, '0.0000', NULL, '', '0', '0.0000', '150000.0000', '', '1000.0000', NULL, 5, 'Try', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4042, 1696, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '75.0000', 1, '0.0000', NULL, '', '0', '0.0000', '142500.0000', '', '1900.0000', NULL, 5, 'Try', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4043, 1933, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4044, 1933, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '1300.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4045, 2356, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4046, 2357, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4047, 2358, 1094, '14007806', 's.bell', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4048, 2359, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4049, 2360, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4050, 2361, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '38000.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4051, 2362, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4052, 1882, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4053, 2363, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4054, 2364, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4055, 2365, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4057, 2366, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4058, 2367, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4059, 1778, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '68.0000', 1, '0.0000', NULL, '', '0', '0.0000', '129200.0000', '', '1900.0000', NULL, 5, 'Try', '68.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4060, 1858, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4061, 2058, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '60.0000', 1, '0.0000', NULL, '', '0', '0.0000', '114000.0000', '', '1900.0000', NULL, 5, 'Try', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4062, 1897, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '17.0000', 1, '0.0000', NULL, '', '0', '0.0000', '32300.0000', '', '1900.0000', NULL, 5, 'Try', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4063, 2368, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '7.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13300.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4064, 2369, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4065, 2370, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '14.0000', 1, '0.0000', NULL, '', '0', '0.0000', '26600.0000', '', '1900.0000', NULL, 5, 'Try', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4067, 1839, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4068, 2372, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '24.0000', 1, '0.0000', NULL, '', '0', '0.0000', '45600.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4069, 1826, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4070, 1894, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4071, 2061, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '13.0000', 1, '0.0000', NULL, '', '0', '0.0000', '24700.0000', '', '1900.0000', NULL, 5, 'Try', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4072, 2095, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4073, 1928, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '17.0000', 1, '0.0000', NULL, '', '0', '0.0000', '32300.0000', '', '1900.0000', NULL, 5, 'Try', '17.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4074, 1936, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4075, 1832, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4076, 1937, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4077, 1930, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '18.0000', 1, '0.0000', NULL, '', '0', '0.0000', '34200.0000', '', '1900.0000', NULL, 5, 'Try', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4078, 1733, 1130, '59903299', 'terminator propagation', 'service', NULL, '650.0000', '650.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '650.0000', NULL, NULL, NULL, '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 (4080, 2374, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '9.0000', 1, '0.0000', NULL, '', '0', '0.0000', '17100.0000', '', '1900.0000', NULL, 5, 'Try', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4082, 2375, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '11.0000', 1, '0.0000', NULL, '', '0', '0.0000', '20900.0000', '', '1900.0000', NULL, 5, 'Try', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4083, 2376, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4084, 2377, 1098, '82701409', 'Drd', 'service', NULL, '650.0000', '650.0000', '20.0000', 1, '0.0000', NULL, '', '0', '0.0000', '13000.0000', '', '650.0000', NULL, NULL, NULL, '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 (4085, 2378, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4086, 2379, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4087, 2380, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4088, 2381, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '30.0000', 1, '0.0000', NULL, '', '0', '0.0000', '57000.0000', '', '1900.0000', NULL, 5, 'Try', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4089, 2382, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '25.0000', 1, '0.0000', NULL, '', '0', '0.0000', '47500.0000', '', '1900.0000', NULL, 5, 'Try', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4090, 2383, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4091, 2384, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '35.0000', 1, '0.0000', NULL, '', '0', '0.0000', '66500.0000', '', '1900.0000', NULL, 5, 'Try', '35.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4092, 2385, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4093, 2386, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '4.0000', 1, '0.0000', NULL, '', '0', '0.0000', '7600.0000', '', '1900.0000', NULL, 5, 'Try', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4094, 2387, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '8.0000', 1, '0.0000', NULL, '', '0', '0.0000', '15200.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4095, 2170, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', '22800.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4096, 2097, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4097, 1973, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4098, 2049, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', '9500.0000', '', '1900.0000', NULL, 5, 'Try', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4101, 2101, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '10.0000', 1, '0.0000', NULL, '', '0', '0.0000', '19000.0000', '', '1900.0000', NULL, 5, 'Try', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4104, 1815, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4105, 1821, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4106, 1833, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', '11400.0000', '', '1900.0000', NULL, 5, 'Try', '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 (4107, 1865, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3900.0000', '', '1300.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4108, 1905, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '40.0000', 1, '0.0000', NULL, '', '0', '0.0000', '76000.0000', '', '1900.0000', NULL, 5, 'Try', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4109, 1942, 1031, '17799852', 'terminator', 'standard', NULL, '1300.0000', '1300.0000', '1.0500', 1, '0.0000', NULL, '', '0', '0.0000', '1365.0000', '', '1300.0000', NULL, 5, 'Try', '1.0500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4111, 1910, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4112, 1970, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4114, 1989, 961, '11720628', 'royal 705', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 5, 'Try', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4115, 1949, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', '5700.0000', '', '1900.0000', NULL, 5, 'Try', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4116, 1811, 976, '13561891', 'ansal', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 5, 'Try', '2.0000', NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sales
#

DROP TABLE IF EXISTS `sma_sales`;

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

INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1694, '2025-02-04 16:09:00', 'SALE0800', 1187, 'james munenr', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-04-03 15:20:03', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '70ac5f5ad02664ba5d94f1428aee49dc4b48af1de0694b7f605d7617a7f19aa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1695, '2025-02-04 16:14:00', 'SALE0801', 1115, 'anthony matere', 3, 'Sagana Plantraisers', 1, '', '', '30400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30400.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 16, 0, '30400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '365e4e853d9c76932a4cdde30b5de0031bb413c2105f9e3e5aee86644729d8ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1696, '2025-02-04 16:16:00', 'SALE0802', 934, 'JOSEPH kasioni', 3, 'Sagana Plantraisers', 1, '', '', '142500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '142500.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-04-03 15:27:40', 75, 0, '142500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd05ed5884b147f6501ce96e16a7f20ec1e583b1e38627fee535f5828e69bdcee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1697, '2025-02-04 16:18:00', 'SALE0803', 1189, 'joseph murathii', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-03-18 11:59:44', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4d7324bc528407e19ca10f3700e8b557dd0601035cf28a1c8a942921436b36c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1699, '2025-02-04 16:20:00', 'SALE0805', 1191, 'James githiji', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'pending', 'due', 0, NULL, 3, NULL, NULL, 7, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bb522f314b948f20ba661a1c815a8d86fa6b228113ceff9348b1f52c7ab52373', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1700, '2025-02-04 16:21:00', 'SALE0806', 1008, 'beth', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'pending', 0, NULL, 3, NULL, NULL, 30, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd6bc1dd8ecfb5a180da95b8c2463303b7507bc2c63c94abaef0386749f3cc3ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1701, '2025-02-05 16:22:00', 'SALE0807', 1196, 'Florence', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'pending', 0, NULL, 3, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '623275dbbc27d1d7a74fbe22adee208fe585755021883721d79ff387e8a78310', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1702, '2025-02-05 16:23:00', 'SALE0808', 1300, 'allan mwangi', 3, 'Sagana Plantraisers', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32300.0000', 'completed', 'due', 0, NULL, 3, 13, '2025-04-03 14:42:55', 17, 0, '21600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3c786fcafb118c9967302509a9d500fd48e6b4f9a4161bb45d9df97f4c9f987e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1704, '2025-02-05 16:26:00', 'SALE0810', 764, 'John Warui', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-04-03 14:51:45', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a47e5be544f55d12388ff794c57a2f6817cc851b7e7a80e6475167a0d8184ba0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1705, '2025-02-05 16:27:00', 'SALE0811', 918, 'Miringu', 3, 'Sagana Plantraisers', 1, '', '', '88800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '88800.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-03-18 10:44:04', 47, 0, '88800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '55df7766f9ec1b1445ca6ad3524d1e846fc0cdf6fa68fe01a99082912ca0f556', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1706, '2025-02-18 16:30:00', 'SALE0812', 1298, 'George wamwea', 3, 'Sagana Plantraisers', 1, '', '', '9425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9425.0000', 'completed', 'paid', 0, NULL, 3, 13, '2025-03-31 14:10:58', 15, 0, '9425.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '39b22d0dd6d9dab452dac92e5d5bef6dd6de7610757754bd97a1a17df7d1bd6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1707, '2025-02-18 17:04:00', 'SALE0813', 1301, 'Josphat mutahi', 3, 'Sagana Plantraisers', 1, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:51:54', 1, 0, '700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '27cf83cf89da67a568df724a940b9922be57b6a2dd09e24ab01308868a2e4e30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1708, '2025-02-18 17:06:00', 'SALE0814', 1302, 'Francis muriuki', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 14:47:32', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bdcd65c1459d2eb64fb4ea8394b70f0d9d66e1825cedace93fbff532c05fcfeb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1710, '2025-02-18 17:11:00', 'SALE0816', 1303, 'Julius 0717553198', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'afd7af97e24a78097705b3449b8d2be37b00a6b0db3a40f5dd750f9e8c17c9f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1714, '2025-02-18 17:13:00', 'SALE0817', 496, 'Damaris', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-13 10:58:55', 20, 0, '38000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b1a8d802bcc75f2a7a513f45c025e811cd1228c51cde961b2fc4111b2aaacc7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1715, '2025-02-18 17:15:00', 'SALE0818', 1304, 'Moses Kariuki', 3, 'Sagana Plantraisers', 1, '', '', '1404.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1404.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-07 18:05:54', 1, 0, '1404.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3a851f1703b96b6ab7983007beb609b35e52a9bbefb75a483d541859bc535e0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1716, '2025-02-18 17:15:00', 'SALE0819', 1184, 'john maria', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-13 09:31:01', 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b85a80294ebeb519aa0b7575e6299a46723c9c4ed7710949cd714198f1bcc599', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1717, '2025-02-18 17:17:00', 'SALE0820', 1305, 'sophia kariuki', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '84dbeff5578cf9513e185e679ab41aa0f32cce441618c007e3b8248d48ba3da1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1718, '2025-02-18 17:19:00', 'SALE0821', 1306, 'isabella mwangi', 3, 'Sagana Plantraisers', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:09:33', 5, 0, '6500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6f20eb509e80ee6a491e158df9524eda0e93d1e3100a25721fff34d9aa657c7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1719, '2025-02-18 17:19:00', 'SALE0822', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd85188385b7969befddddb382529666cdc438c6217a5c08a59c1901ce0cd1817', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1720, '2025-02-06 17:21:00', 'SALE0823', 1207, 'Susan wanjiku', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:07:52', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e001c72f86500589c4d930101009dead909e8d62862b14a827b4dddd8252f3d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1721, '2025-01-28 17:23:00', 'SALE0824', 1113, 'Edwin karani', 3, 'Sagana Plantraisers', 1, '', '', '4750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 17:25:39', 3, 0, '4750.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '398bfccdc84fc3407ac4dfdc0bdafa31864c07a8bfbd155a3f0df5b34d37c329', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1722, '0000-00-00 00:00:00', 'SALE0825', 1170, 'anthony muthii', 3, 'Sagana Plantraisers', 1, '', '', '39900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '39900.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 21, 0, '39900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '586632a4898f7029dc8989a09644f202263f40d0d8884b7d914219ee9dae54a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1724, '2025-01-28 17:31:00', 'SALE0827', 1118, 'Julius Kinyua', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 17:34:39', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b0ddff410f9b612abb2e4a81d06b29280509ddf20cb6cfead36c028b88714ad5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1725, '2025-01-24 17:36:00', 'SALE0828', 1075, 'Donald  Mutiso', 3, 'Sagana Plantraisers', 1, '', '', '85500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '85500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-17 10:08:01', 45, 0, '85500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a3a4e1b3b2abb972ccc4f0ad6202b8bcaef77e00eaeb127f1f6a52ac01ed7a2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1726, '2025-02-18 17:37:00', 'SALE0829', 1168, 'Macharia safania', 3, 'Sagana Plantraisers', 1, '', '', '57600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-07 17:05:03', 72, 0, '60000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '24ca3694738405dda4d83381b1efb8fb9e886a754279764f12a24d85b2361cbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1727, '2025-01-20 17:39:00', 'SALE0830', 1126, 'murimi', 3, 'Sagana Plantraisers', 1, '', '', '171000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '171000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 17:41:30', 90, 0, '171000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '89fe60bcf4d94893ea7443ce28073cdc08157a71bbbc2e0d5b878011eae65403', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1728, '2025-02-18 17:41:00', 'SALE0831', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2250.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '714972766d9bc2b9ae6f284cc3930bad7707095951c37805781273f4c50b92ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1729, '2025-02-03 17:46:00', 'SALE0832', 1171, 'moses', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-02-18 17:48:25', 12, 0, '22000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a4da610d65730f725236ddb6bdc3c68775031ff092b8e4c865e4c33590d95764', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1730, '2025-01-23 17:49:00', 'SALE0833', 1087, 'damaris njeri', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 17:50:48', 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '381def48bd0ac0e0b3a1bad24e94b3c28a47330b9336c4fcf38eb49aab2f6064', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1731, '2025-01-22 17:52:00', 'SALE0834', 916, 'Benjamin  Koomu', 3, 'Sagana Plantraisers', 1, '', '', '26600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 17:53:48', 14, 0, '26600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'beb2d35180d7bdcc39d3e13090c4229604dfa90703306247fa5fdef05eff02ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1732, '2025-02-24 17:54:00', 'SALE0835', 227, 'Benson warui', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-26 12:27:01', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '13da925c26473d82382270b5288de9192dd2f25216e870f168862605c13615d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1733, '2025-01-23 17:57:00', 'SALE0836', 1155, 'Duncan Kariuki', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 10:05:03', 6, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a19798dfe1f5130a9a36415d767a2980566b2f7a19d6ae4684d4c42411a74ac0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1734, '2025-02-18 17:58:00', 'SALE0837', 1003, 'lazarus mwangi', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:23:52', 30, 0, '57000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd0854523cff9829e13a6be5743b49b55be9afa90bee8188160205f40dfef5b33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1735, '2025-01-21 18:00:00', 'SALE0838', 1003, 'lazarus mwangi', 3, 'Sagana Plantraisers', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-18 18:04:57', 13, 0, '24700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f714f2f2c9d3dda4c7c811e835d3d520e8966dd89a4f84087aac53dbf5e3b3b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1736, '2025-02-17 08:36:00', 'SALE0839', 465, 'Mwaii', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd89ef9fbb822636a9b3aaa637f64b041cddf632c44afbc1e5f8d6c1a6c7df035', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1737, '2025-02-17 08:37:00', 'SALE0840', 1298, 'George wamwea', 3, 'Sagana Plantraisers', 1, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 3, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ff15254f2a0d0b3a25e5fb8f7380b4645eb26b222e97849271375e4d1a4691fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1738, '2025-02-17 08:37:00', 'SALE0841', 1299, 'Gatimu', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:47:50', 2, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c376bb3a95d232e649b4006df2686d45aed0ebaac6ec57dc1d3834d617dda372', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1739, '2025-02-14 08:39:00', 'SALE0842', 1297, 'Grace Wambui', 3, 'Sagana Plantraisers', 1, '', '', '1625.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1625.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 3, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '66f7cf520e6a9b17df93cfb25a0741c62e5b6b94ddf24bdb921318e621b3d70c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1740, '2025-02-14 08:39:00', 'SALE0843', 1296, 'David njeru cucumber', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0bea0efe651c16e53599b400f18dc1f6d681c9df9180e320b0205d8b7af76e03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1741, '2025-02-13 08:41:00', 'SALE0844', 1294, 'charles karangi', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b0362cd92200b8aebfa2c4dfe09224e4d9e61ba727198f9cdbc343a928835ca4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1742, '2025-02-14 08:43:00', 'SALE0845', 1295, 'mucogia', 3, 'Sagana Plantraisers', 1, '', '', '27625.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27625.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 43, 0, '28150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3a32f631f85267a1c6ec467d2ec3a13c7c225b90d9af2bef25123e151e559cf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1743, '2025-02-13 08:44:00', 'SALE0846', 1264, 'Simon Muchoki', 3, 'Sagana Plantraisers', 1, '', '', '4550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4550.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 7, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fee0ee785bd99a7eda7ac17f637a172f98409e671b2d4578fac0975e65b300bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1744, '2025-02-13 09:01:00', 'SALE0847', 1264, 'Simon Muchoki', 3, 'Sagana Plantraisers', 1, '', '', '4550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4550.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 7, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '543b4f7477d1433e497e01e608d66a1850df5e57769def34f2bf18b4dac25fb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1745, '2025-02-01 09:03:00', 'SALE0848', 1270, 'Jane Wanjiru', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected after 21 days&lt;&sol;p&gt;', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5b0cb93688c37854adbb3aa9c5baf1e345b6e41654e66b8638e339a103dbd904', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1746, '2025-02-03 09:04:00', 'SALE0849', 1272, 'Richard Hoho', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;to be coolected after 28 days&lt;&sol;p&gt;', '', '2925.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '47186453bff282930b1cbaf53ec7339b23a7384e21b8bb6bb5dc36f88539cd9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1747, '2025-02-07 09:05:00', 'SALE0850', 1273, 'Derrick Kangangi', 3, 'Sagana Plantraisers', 1, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-03-11 12:04:10', 3, 0, '1950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e1dd87dcee3f932c3c23359581e23fe3f1d1b20480e19c32f35f2d5750cd89b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1748, '2025-02-07 09:05:00', 'SALE0851', 1206, 'Nicholas muthii', 3, 'Sagana Plantraisers', 1, '', '', '10900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:01:56', 11, 0, '12050.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4b98ee366495d9648346a5a835abffdb5319348e9fc28be234a86413450d601b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1749, '2025-02-10 09:07:00', 'SALE0852', 1292, 'Elijah maina', 3, 'Sagana Plantraisers', 1, '', '', '7475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-03-11 11:47:25', 12, 0, '7150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c146f0a3366b2f5bbeedde429201126f55b037872bb1b97e3a206c060205570', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1750, '2025-02-10 09:08:00', 'SALE0853', 1291, 'John warui', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;paid by joseph kimani&lt;&sol;p&gt;', '', '7475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-03-11 12:02:17', 12, 0, '7150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '66d6c8b42adb26eb2b83c14c2a72616a758345679ed6dc0ffa61128d0b30ee5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1751, '2025-02-10 09:09:00', 'SALE0854', 1293, 'eric wachira', 3, 'Sagana Plantraisers', 1, '', '', '17550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17550.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 15:16:09', 27, 0, '18525.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cfa5e7e14eb4b879c3175ea719627947933dfb7bf0e59b8f6273f6919a5ebbc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1752, '2025-02-12 09:10:00', 'SALE0855', 918, 'Miringu', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 17:02:43', 4, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '10a4dadab6e79be2c2d13f99ad7cea5006aa1670ddfba5625ec7c527ab6282de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1753, '2025-02-13 09:13:00', 'SALE0856', 1295, 'mucogia', 3, 'Sagana Plantraisers', 1, '', '', '27625.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27625.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 43, 0, '28150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f61427e13a5d45b9a06684e2527c7220cd384138ab6e721f8b073d0dc60989e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1754, '2025-02-07 09:16:00', 'SALE0857', 1307, 'anthony (0702577229)', 3, 'Sagana Plantraisers', 1, '', '', '7475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 16:39:56', 12, 0, '7475.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '756d011aaf638e05f95fa1fcc21360c1c87ea3bb577ead83876a259ec59daea2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1755, '2025-01-21 09:20:00', 'SALE0858', 1067, 'John Githu', 3, 'Sagana Plantraisers', 1, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-19 14:43:18', 5, 0, '3250.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8c9b0f0171943d67304add6930352ceca8e71781bfa1e2020c45599dd19af6cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1756, '2025-01-21 09:22:00', 'SALE0859', 1054, 'Ibra', 3, 'Sagana Plantraisers', 1, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 12, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e12669336e87c67b1bf5f87e6b739157b9fe32ce3d01f880f9c39de714ccf8aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1757, '2025-01-21 09:24:00', 'SALE0860', 788, 'Paul', 3, 'Sagana Plantraisers', 1, '', '', '2925.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:16:51', 5, 0, '2925.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ba8342e758767dbba934c0870b94a18d165a700e5274ef9310fcb82b1a3e3c49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1758, '2025-01-23 09:28:00', 'SALE0861', 1260, 'John mwangi', 3, 'Sagana Plantraisers', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-20 16:39:03', 10, 0, '6500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7c311f5d0dcd68cd9189387730dce44f0e45c56124bbc856454792ae8e054377', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1759, '2025-01-24 12:26:00', 'SALE0862', 142, 'Stanely Gitari', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-02-19 16:59:48', 8, 0, '1400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9269104ff101c860ec3dfb14bd9cba78d08139842d7e34cb77f11adb8a5fba0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1761, '2025-01-24 12:31:00', 'SALE0864', 1107, 'elijah gitari', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;3 trays germination was poor&comma;&comma;&comma;was given ansal 1 tray&nbsp;&lt;&sol;p&gt;', '', '20800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20800.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-02-27 16:20:12', 32, 0, '18000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '41e39b23aac9606c4ef01d0545faeb5ac8adc967385b2ae930f49b9c325ca3ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1762, '2025-01-28 12:40:00', 'SALE0865', 1008, 'beth', 3, 'Sagana Plantraisers', 1, '', '', '22425.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22425.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 35, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0c232470b284082eb45301a017a716e62c4268b79c4ccaad040a890c002ad023', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1763, '2025-01-28 12:41:00', 'SALE0866', 465, 'Mwaii', 3, 'Sagana Plantraisers', 1, '', '', '2925.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 5, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'eded8dfdb53f9237b167eead9515d15bbb86895aaefeb4f14da1cc22af4534c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1764, '2025-01-28 12:42:00', 'SALE0867', 1263, 'Wa Migwi', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 16:39:34', 8, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e43010f528fd7d96f4b549f12c2d714ad564d7c4c608fecf4f05c43b4d7a929d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1765, '2025-01-28 12:46:00', 'SALE0868', 198, 'Samuel Kamau', 3, 'Sagana Plantraisers', 1, '', '', '975.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '975.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '975.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e5b2d0e04bc40925057168b9edcb7495aa6fb686d6c6951ee066e73b291bf932', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1766, '2025-01-29 12:48:00', 'SALE0869', 1266, 'Titus Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8b14baf36356dd4131b38d31b962285250ad48bc499ff92a135b3e6be2cb5f12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1767, '2025-01-29 12:51:00', 'SALE0870', 341, 'Joel  Kihohia', 3, 'Sagana Plantraisers', 1, '', '', '11500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:14:33', 10, 0, '11500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f21f3e4dc0634c35d349bfe813366eac9b6354c096fa3ab007a888e597ae99a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1768, '2025-01-30 13:00:00', 'SALE0871', 1267, 'Moses Njega', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:38:44', 6, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'da38f0ec466095df94c64bb60b395d1c759c6ebb586842ade9350c9f88d02d2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1769, '2025-02-19 14:43:00', 'SALE0872', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9afc0f5188f6bdca7449506acdd17f105df1b1c47f519d45131ac4c4b0a34421', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1770, '2025-02-19 14:46:00', 'SALE0873', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd8b5a6a115e507c366641ce5038e417e9dac352b68c09b790b35ccad13c9f7b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1771, '2025-02-19 16:08:00', 'SALE0874', 598, 'Dennis Mwai', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 10, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c170f51478eda3d0ced4f7c800380a89a42ee5eb125f7df09e1667dafe67b9ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1772, '2025-02-19 16:12:00', 'SALE0875', 1308, 'Joseph njoronge', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:09:53', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b30716a604a19ec2ebea834a956fa2879e2faedde5f68a9f6786669bc298f394', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1773, '2025-02-19 16:16:00', 'SALE0876', 1309, 'gathumbi 0706502028', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:16:44', 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'df123072acd4124f77cd2befd8a2951b6ecc043eb924e6c004295c98c540dc5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1774, '2025-02-19 16:27:00', 'SALE0877', 1310, 'Fredrick muthii', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '3700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '30473e28a624ca9a86d19bad0b1af0e52a836c9e2f16ed53a70f3260110ab057', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1775, '2025-02-19 16:30:00', 'SALE0878', 1311, 'Joseph mureithi', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 15:24:23', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd0fb85a2f5aaa16f0c935a6562fba44ed778a60a4c293f89528940595a1719ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1776, '2025-02-19 16:31:00', 'SALE0879', 442, 'Patrick Mundia', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '68a08e7d3ca43fc4a022a2954c8719ba53bbb5cb4623f1130fc7bd993c11dacc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1777, '2025-02-19 16:32:00', 'SALE0880', 1016, 'johnstone kiratu', 3, 'Sagana Plantraisers', 1, '', '', '14300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:10:30', 11, 0, '14300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8e9a506246bc9c857973b16d99283bcb6e8c95223bb5b40c24dce072ac14adf8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1778, '2025-01-25 16:34:00', 'SALE0881', 1103, 'munene', 3, 'Sagana Plantraisers', 1, '', '', '129200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '129200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:15:25', 68, 0, '129200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '95237e744d8ca81ad63eadcb304b23d91189461a39427a665b1ce873b409ae89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1779, '2025-02-19 16:38:00', 'SALE0882', 1103, 'munene', 3, 'Sagana Plantraisers', 1, '', '', '72200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '72200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 38, 0, '25800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa88ca7f0ff79024b247d99ddf0b29d914b609603cbf06877ee98bccb4498382', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1780, '2025-02-19 16:40:00', 'SALE0883', 166, 'Elias mwai', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '48f525957ee62f40002146e0bfc5ccd103974f0ee0db07b5ddb5cf21283e6122', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1781, '2025-02-19 16:41:00', 'SALE0884', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '315ab01e8e8fbcf4e2efca24d1678cc0f58166fbeca08157504dec9c2cfc7b75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1782, '2025-02-19 16:47:00', 'SALE0885', 1018, 'sarah muriithi', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:10:54', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd083cb546873cba6a1388e437b979f0ab7c378266608cdf53db2629a5896926d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1785, '2025-02-10 17:16:00', 'SALE0888', 1232, 'David mugo', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:39:40', 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fc24a5bf2dfd3dea91f66e115abebb8ab5ebecad711a30799c05bb0cb47a6d2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1787, '2025-01-29 09:39:00', 'SALE0890', 1129, 'Julius Kariuki', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 15:56:52', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3c07cc2f158f812d9825cc8f58b19f78a70656fcb3d597171c30309d413e8647', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1788, '2025-02-20 09:41:00', 'SALE0891', 1008, 'beth', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '165bfe9779577c397ef57ef4f07dc13f9e722cbb14ce3847bd913cd6d639feae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1789, '2025-01-30 11:15:00', 'SALE0892', 1159, 'Anthhony murimi', 3, 'Sagana Plantraisers', 1, '', '', '12675.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12675.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '77bb991731c4e78a72f4882a9f4c1451081dd35bcb89d2168be6f973a2508f71', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1790, '2025-02-20 11:20:00', 'SALE0893', 1314, 'Samuel Warui Maina', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e7826abe19723e615c7ed76a88915ba341f72517c8b94f623546c2085182d9c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1791, '2025-01-31 11:37:00', 'SALE0894', 1268, 'Samuel  Kangeche', 3, 'Sagana Plantraisers', 1, '', '', '7475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 12, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b9561de06cb9d9f79603833368ccccd17bd1c389b405c4cfa77174be42e925b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1792, '2025-01-31 11:39:00', 'SALE0895', 1269, 'Stanley Wachira', 3, 'Sagana Plantraisers', 1, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 16:50:02', 3, 0, '1950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '36af2f03c43504314ccb25295fb26b3a7089092baa5f031df532bdd37001e66e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1793, '2025-02-06 12:16:00', 'SALE0896', 1213, 'Geoffrey wachira', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 20:47:44', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5a4f400d83be7000ab21d3ad1fe699d87f7712e00d0f3124701807fb8083a84f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1794, '2025-02-06 12:17:00', 'SALE0897', 1214, 'Beth wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-22 11:50:46', 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '52c80de3a282beb98c3b18416046050bc2d7d64235dde50bf74974aa4ea7950e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1795, '2025-02-06 12:20:00', 'SALE0898', 1215, 'Anthony mwangi', 3, 'Sagana Plantraisers', 1, '', '', '8550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8550.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 09:55:54', 5, 0, '8550.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'da31ea60723c5c164e3251229a2a4d045cbcb3a7e9a5ea05531dcb8cf36d9227', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1796, '2025-02-07 12:22:00', 'SALE0899', 1216, 'johnson kariuki', 3, 'Sagana Plantraisers', 1, '', '', '51300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:22:23', 27, 0, '51300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6e47a829f579a084203d4d1d58fbba5978a45303b110a8b397dd9ed8e324ba88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1797, '2025-02-07 12:28:00', 'SALE0900', 1217, 'Alfred gathumbi', 3, 'Sagana Plantraisers', 1, '', '', '4800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 6, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f882b82900660932c46f07ab8e3bf77c0e115bc8cb4ad38084db3fae0d1d1a6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1798, '2025-02-07 12:29:00', 'SALE0901', 1218, 'Richard Mnuhe', 3, 'Sagana Plantraisers', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10400.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '6500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'db43bfd14694502890a2c118d5c8929f1aaaea3c03e06e33e539b6693311c4a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1799, '2025-02-07 12:32:00', 'SALE0902', 1219, 'James Mugo', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 20:49:30', 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5e7d8a9ffbd38990dec17ea2a8329f5cc1cd75aac33cd7551729d6381728dd72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1800, '2025-02-07 12:34:00', 'SALE0903', 165, 'peter kiara', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '12950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ea2def5463950f9654f0ac87ed2adf12a8772eb2509bd10f6f6f02a0c232014d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1801, '2025-02-07 12:35:00', 'SALE0904', 497, 'George Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:24:40', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '723b5c5e66ce80d1dbeea17414a24647880f597a961639c965c3c0ee2b049e24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1802, '2025-02-07 12:45:00', 'SALE0905', 1220, 'Kimathi Kimonte', 3, 'Sagana Plantraisers', 1, '', '', '66500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '66500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 20:50:18', 35, 0, '66500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4b1f9b58610346b260320678c47ac906e805fb147f7d31c2e17e989ae88f79b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1803, '2025-02-08 12:46:00', 'SALE0906', 1221, 'Margret Kamau', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 20:54:18', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '61ca7f6f2a465c65a3ddae9c1563af286ec34767b1e7eaab2a12ec6cdbdc4788', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1804, '2025-02-10 12:48:00', 'SALE0907', 1227, 'Josphat ndai', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:03:07', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c6ebd95f647de81827fbd7f6079ee9e932398d28ac51c7e36757ab34e88f4821', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1805, '2025-02-10 12:49:00', 'SALE0908', 1229, 'Andrew kiragu', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:40:51', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bde2ff4f73691cf2204ac0d511b96db1677d68a7dc4c8c9f500a862bc454e630', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1806, '2025-02-10 12:53:00', 'SALE0909', 1230, 'Muthike kinara', 3, 'Sagana Plantraisers', 1, '', '', '174800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '174800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:07:29', 92, 0, '174800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bb9095ad1278c59bbe8aff72cbd7bd010952b4ec320b63e0ee9d56d74d8b30c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1807, '2025-02-10 12:55:00', 'SALE0910', 1231, 'Samuel Njiru', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 09:13:32', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '69fd29c9946629a393ac612ddd96a22da40a3ec59150d383026e509c711cc9ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1808, '2025-02-10 12:56:00', 'SALE0911', 1073, 'David Maai', 3, 'Sagana Plantraisers', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 13, 0, '19500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7a6df6ad364755f81588c94db806aa24d2d5c9c30311b38780fdc3fc8ad9143a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1809, '2025-02-10 12:57:00', 'SALE0912', 1233, 'michael karani', 3, 'Sagana Plantraisers', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 21:01:32', 13, 0, '24700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5fc711aadd9ef099cfe78fb4579d8b30213c286f59857912a74a9b0f18d7f960', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1810, '2025-02-10 12:59:00', 'SALE0913', 1234, 'Isaac ndugu', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:16:57', 15, 0, '28500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ee7211faa4ce2bebcb3c85553c04085f862f25218e6c334e32e9dff13b951e07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1811, '2025-02-10 13:00:00', 'SALE0914', 1235, 'Johnson maina', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:52:12', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8b3c7e3b937dd40057bce79d2ddf0f70be71e27063191413e12c17c74432d80c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1812, '2025-02-10 13:01:00', 'SALE0915', 1236, 'Hilary Maina', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 21:04:51', 5, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6367b8432718c862cde367925f6b14070d56dbb15e85d78c40f0fef7a015662d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1813, '2025-02-11 13:02:00', 'SALE0916', 1238, 'Mirriam Kimotho', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:17:12', 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '420542ccefa1de1e575b4040b8901a1d0652cb791630d0ad8d38db57dbc44b1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1815, '2025-02-11 13:04:00', 'SALE0918', 574, 'Rose Nyambura', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:20:42', 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e01a1bfd3ca7c9e61b253834d6e241eef3b221258a629e9a61a5b7af6e656b7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1816, '2025-02-20 16:37:00', 'SALE0919', 1001, 'mary kinyua', 3, 'Sagana Plantraisers', 1, '', '', '209000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '209000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 110, 0, '210000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f28320dcf9e85ccc2e70489d9aa7a6a0aa9e44da12f26b2e076313f574238a20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1817, '2025-02-20 16:39:00', 'SALE0920', 1081, 'Daniel Nderitu', 3, 'Sagana Plantraisers', 1, '', '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:25:07', 6, 0, '12000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e0edb285a658a41e17040d9f67ddcdee6a72f85058220526e365b7dd2fa118cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1818, '2025-02-20 16:40:00', 'SALE0921', 1096, 'patrick kariuki', 3, 'Sagana Plantraisers', 1, '', '', '9100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9100.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 7, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f3a89e3d269794a0ebfe50b2e483120eaa3cf10030b503598590b04e3180250c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1819, '2025-02-20 16:42:00', 'SALE0922', 1315, 'judy 0729580908', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8bb9cbbce36aa4beeea213f54c7a583b3cf89c8b8fecf12f762d861be60c7294', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1820, '2025-02-20 16:45:00', 'SALE0923', 1316, 'michael kinyua', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:16:12', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f23d21056387b93f451fd358c5e66d7a4e2fe34a0cc65e54e138dbb3450245f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1821, '2025-02-20 16:46:00', 'SALE0924', 1317, 'peter kinyua', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:22:59', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6c6064ec9b9d72eafd84857c3a2196aced3fb5a9c929a50889b2282a8495dcfa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1822, '2025-02-20 16:48:00', 'SALE0925', 1234, 'Isaac ndugu', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:16:43', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '98b8349d67dd0f970f4561232b41f983127456c5b1e64450defb07acea244ffd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1823, '2025-01-29 16:49:00', 'SALE0926', 1125, 'Nixson Ukii', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1d81c732c6a01ab5d69aac2b7836e9b4cde17eb49c3fe255446401970a7d9a04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1824, '2025-02-20 17:02:00', 'SALE0927', 1318, 'geoffrey gatimu', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 10:09:09', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f8452f384e368afb460d4e7da92297afe385234eb6d79497182a32b4c65e9d5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1825, '2025-02-20 17:03:00', 'SALE0928', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-20 17:04:56', 3, 0, '2500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd5d8a7bd13fda73b839d994052b19c61e68fcb7af0ac29a28c4d8419ed003f7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1826, '2025-01-29 17:11:00', 'SALE0929', 1127, 'Nahashon Waithaji', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;1000ksh was refunded through mpesa &lpar;0710841004&rpar;&lt;&sol;p&gt;', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-04-04 09:47:39', 10, 0, '20000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4274b52f15aa09622d537203f1d4d1c4c8d18920d8d5f44567983748f7f6522f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1827, '2025-01-23 17:14:00', 'SALE0930', 1081, 'Daniel Nderitu', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:20:16', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e69b5c86a672419dc61d52ee469f2cee9734b326fa6ec7ffc2ac4d167bbf42f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1828, '2025-02-20 17:22:00', 'SALE0931', 1319, 'Amos  mwai', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-20 17:23:37', 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5701e0c2aca6b66ada0d64a21a128e0d6d1f0c6db9500b711b9787003e9aa4a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1829, '2025-02-05 17:23:00', 'SALE0932', 1033, 'Francis njeru', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-23 20:38:03', 7, 0, '15000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8c3defab6e48057475d47d34996f9b21b53e29b99cc1518d1ca02430a7df3676', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1830, '2025-01-24 17:28:00', 'SALE0933', 1079, 'Francis  Kihara', 3, 'Sagana Plantraisers', 1, '', '', '20400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-20 17:31:10', 12, 0, '20400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1d76f4afdc7c4b16a4f6ff852862491e2b0c2ae8d7404b0da6e4b9b3f301923d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1831, '2025-01-24 17:31:00', 'SALE0934', 1078, 'Thomas Muriithi', 3, 'Sagana Plantraisers', 1, '', '', '14000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-20 17:33:23', 8, 0, '14000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '32e941733601a9640485ab0185f62cc9959b9f1ee7f41c89e406c6ad7d5b1339', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1832, '2025-01-31 17:33:00', 'SALE0935', 663, 'Anderson gachoki', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:56:19', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8da94519136d71d0d70bf33efb5bb474e9760ec1ec14893ff09b0aa92081c053', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1833, '2025-02-21 16:24:00', 'SALE0936', 1320, 'simon thiongo', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;refunded money paid by miringu&lt;&sol;p&gt;', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-04-04 16:25:26', 6, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '76b262258283c2709367c44357d89dc6f5119c455ec1797c737acd42982b1ef0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1834, '2025-02-21 16:35:00', 'SALE0937', 1321, 'Anthony 0707985451', 3, 'Sagana Plantraisers', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:11:52', 8, 0, '8000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b5bc654adacf9e2b18b77b752df824350bff7fb268ebf5be7f7a96cd4c2e51ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1835, '2025-02-21 16:39:00', 'SALE0938', 1322, 'Festus  0708791485', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e04aa9ace0ddc08ae354e044d0aeb7444407b87034c1df12179cf952f4cf9ef2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1836, '2025-02-21 16:40:00', 'SALE0939', 1285, 'Eliud Musyimi', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 11:18:14', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b46e1f85c366c2c326a875888e35315e1c39bc9d3cfbb5ef98282c24b60c3222', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1837, '2025-02-21 09:02:00', 'SALE0940', 1115, 'anthony matere', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-02 16:40:56', 15, 0, '28500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd27a6b297b4bccc40b84c76bbc2c49b492bf9f77e9749e5fa29757c3af6f4c35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1838, '2025-02-21 09:25:00', 'SALE0941', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cab20a71cf611b067a20f17eaecd37358836c4b5dacb9bf6ed10eb99c6aad749', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1839, '2025-01-28 09:26:00', 'SALE0942', 1112, 'Millicent Njoka', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:28:09', 2, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'df4b07f95e00757e7a11e6019bd8483ff2f19742ec6ca75bac2b0012693f0eca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1840, '2025-02-21 09:29:00', 'SALE0943', 950, 'collins gachoki', 3, 'Sagana Plantraisers', 1, '', '', '30400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-22 09:33:28', 16, 0, '30400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '48862a44d94186b99d5f1031f3a3515b2900e3a4209586c76a5e9735a778147b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1841, '2025-02-21 09:34:00', 'SALE0944', 1314, 'Samuel Warui Maina', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd61d0a7e3de2a06dd76c28a9b5cdc928eeade7f942c23c47bdf2ac70526db817', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1842, '2025-02-18 09:47:00', 'SALE0945', 1151, 'Anthony Gichira', 3, 'Sagana Plantraisers', 1, '', '', '26600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 14, 0, '26600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8c1b42a20711fa889d391a13442dfcc5f05996674213516c95b0eb872efd5844', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1843, '2025-02-17 09:49:00', 'SALE0946', 1323, 'wilson muthee', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:22:08', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd8d046f4da6c54f5db253417b21eeb02982e3f3598414a36dc04386f006c8994', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1844, '2025-02-21 09:52:00', 'SALE0947', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '80ee38c9445e088c900b040fa3d7925b9678a236daa03c2c6c0b45d479ee1d88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1845, '2025-02-21 09:54:00', 'SALE0948', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '63c20a11808247b739571ebd2c4b905263968f1c4bce00a2992ee8f4121c8ec8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1846, '2025-02-06 10:02:00', 'SALE0949', 1208, 'Joseph muriga', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:24:17', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7ba4076869c5f248d49d1d54a10a6de80179d116e26d5485ee91cf8d899aebf0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1847, '2025-01-30 10:04:00', 'SALE0950', 1143, 'Julius Kimotho', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 12:00:35', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8f9c67c0005065fe4779f2c11029e5e2a452eb293b0423c81a6ce7c9d4b9251a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1848, '2025-02-21 10:10:00', 'SALE0951', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '22761e692447596aa86b1c18e89377bb5126b234c688ba6dd12c47262dc3746a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1849, '2025-02-21 10:15:00', 'SALE0952', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8a3e2706e52ea81d3fa14ef5ee957250785dda6911a16a2ddd3bf64647ddc966', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1850, '2025-02-21 10:19:00', 'SALE0953', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f963e49bae84f4a706247e2db1ed9afc1c68010b3122a1fab807b4e255febdaf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1851, '2025-02-21 10:20:00', 'SALE0954', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e72497781809ed49e47f52ac85af2a4a8dada1e620c243cbb180976c37344ed0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1852, '2025-02-01 10:24:00', 'SALE0955', 1182, 'Gilbert muthee', 3, 'Sagana Plantraisers', 1, '', '', '26600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 15:56:24', 14, 0, '26600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f0ff1f51cd2edb2cd81d9fea38790bda6480b0ee9c9b29f51b3ad891183cf254', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1853, '2025-01-25 10:27:00', 'SALE0956', 1324, 'Pauline 0741488550', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-22 10:38:06', 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '180cd5135e4f5ab6be6e5ca8c3bc8f4c7a0ae21e95c7f2da4b0e006b3c5cd85a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1854, '2025-01-23 10:32:00', 'SALE0957', 1031, 'Virginiah wambui', 3, 'Sagana Plantraisers', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-22 10:37:47', 13, 0, '25500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '45db4a200b346ff650d73592b9310c5b4d16b9232fdaef413291d8d662caa57d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1855, '2025-02-22 11:46:00', 'SALE0958', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '82936ed3d4b02717d3f63e189a711fde8dc86550b59c4bdd8915918070310398', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1856, '2025-02-22 11:46:00', 'SALE0959', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9bfb5eb3eff251e6a4f78895595522fb163afc7fe23bd1177cd5f3d71c2592cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1857, '2025-02-06 11:48:00', 'SALE0960', 1214, 'Beth wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '557c523660274ea4c34706b81ce21998bddb1722d26f55666875bb1aef5ed606', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1858, '2025-01-27 11:51:00', 'SALE0961', 160, 'patrick muthike', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:15:55', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f4a17916fc2801f37acba901ab611904bbc9d8a643c885bf2c72e5bf55b6e4d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1859, '2025-02-22 11:53:00', 'SALE0962', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3de2a06895caeb1827c43c71fc804676e61f10ffc31a15e2d6892a36a9be5c9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1860, '2025-02-22 13:36:00', 'SALE0963', 658, 'Lydiah', 3, 'Sagana Plantraisers', 1, '', '', '17300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17300.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 11, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ac24deb607c2c374ed88b360824df61b1ef9031dd163a809c7009ec11854277e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1861, '2025-02-22 13:38:00', 'SALE0964', 1325, 'David Gitau', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:57:12', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '13aabeb018ad72edc3a8892a83f123e44cede2768de389272f72d9e30f53bcdb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1862, '2025-02-22 13:39:00', 'SALE0965', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '36ea6dc97a61a80759b706d467e1d49f7c90497a32dc51faa84d8b786be7867e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1863, '2025-02-22 13:40:00', 'SALE0966', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e666f28c6668e9caf638c530e687b1d15957a5792bda235ffbd56b56af6d74a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1864, '2025-02-03 13:42:00', 'SALE0967', 1172, 'francis maina', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;collected 3&lt;&sol;p&gt;', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:18:04', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f2215f9038495f4b0a525c063afa4a8b7e668b73e8d171249b6243b764114684', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1865, '2025-02-22 13:54:00', 'SALE0968', 1326, 'Simon Kinyua', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:27:26', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1ad085e0af425a3f718f75b08397af44a68696fedb2b5fd522ee76f72fe59a69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1866, '2025-02-22 13:55:00', 'SALE0969', 1327, 'Nebat Wamae', 3, 'Sagana Plantraisers', 1, '', '', '5300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5300.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 6, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '28c7350f11e9e1f48c1c3f2c04db55d3dc1b55fedb91e1a16e35e9453eb6ff82', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1867, '2025-02-01 16:02:00', 'SALE0970', 214, 'Gichira', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;collected 50 trays&nbsp;&lt;&sol;p&gt;', '', '133000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133000.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-03-11 09:52:15', 70, 0, '79500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8c921a8a13a352f1b137729347bdaf78e4b96c7a5e8fa211a3f518a25a383f4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1879, '2025-01-23 16:05:00', 'SALE0971', 1262, 'James Gachoki', 3, 'Sagana Plantraisers', 1, '', '', '5525.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5525.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-02-24 16:17:27', 9, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fec26af62d828e291a56455a9c381bb9b77ddfc733e36defd5658e8433bb6f6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1880, '2025-02-03 16:15:00', 'SALE0972', 1167, 'samuel mutugi', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 16:16:56', 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bc1b0c6f98c449f3e63da9ee79fc610c5af2dac8bb2c56425b557ab85336e88b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1881, '2025-02-06 16:17:00', 'SALE0973', 1211, 'rose kiongo', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 16:22:42', 5, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b98a5a5dc11b8b36a0aeef99ebee87b24b371354dd312c3bbf0d33c7438f3950', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1882, '2025-01-23 16:24:00', 'SALE0974', 1083, 'martin kiragu', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 08:58:51', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ef85249d32e108c873b133b7c3cd9625935544ec94c12fd18d28a43bc939cf99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1883, '2025-02-11 16:29:00', 'SALE0975', 1246, 'Esther njoki', 3, 'Sagana Plantraisers', 1, '', '', '9600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '58cbecf3227e1fc1fe4ebfcc978f2742e4fd76a49db402932ec9f47ac4c1cad9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1884, '2025-02-24 16:33:00', 'SALE0976', 1001, 'mary kinyua', 3, 'Sagana Plantraisers', 1, '', '', '152000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '152000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 80, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '71ea2750ccdcc3234ab750216df15e4772107b160c3385d368c18b80886f323c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1885, '2025-02-24 16:34:00', 'SALE0977', 1328, 'stephen waweru', 3, 'Sagana Plantraisers', 1, '', '', '15500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 09:15:05', 8, 0, '15500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '597db729d956c085182dae2918916754f57f207e04a72ab5258cf493df1e43b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1886, '2025-02-24 16:37:00', 'SALE0978', 1329, 'justus karimi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-18 12:09:30', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '648ddb2f512e2d6c2071e7b01400e6115c8aac5f27162c36b392a8df00ac85ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1887, '2025-02-24 16:40:00', 'SALE0979', 897, 'james kangethe', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 11:48:42', 15, 0, '28500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c3c2e9d030cc668111f5da7794a83721c92c60d6aa395e237c00807092cf7d25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1888, '2025-02-24 16:43:00', 'SALE0980', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '194.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '194.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 17:04:57', 0, 0, '201.7000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fcff83758e7b0f5553b3c257d3fdb7a28d916870c7d837a1c3130e63d873717b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1889, '2025-02-24 17:06:00', 'SALE0981', 1330, 'peter gatimu', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:19:11', 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '22a019c07afc4027b15fbb1e25e92fc01c71ec86d80046e1eb25cbabf0c19b8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1890, '2025-02-24 17:07:00', 'SALE0982', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0c9a7d3ccf27f67092e5290dc1d5e8cd9cb0aadb83a83537a9ac88516cd2f5e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1891, '2025-02-03 17:08:00', 'SALE0983', 1005, 'john mucebio', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-24 17:10:35', 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6120a07e865d9b832cb43562d4ce384ea6a521238a6a3ed5414d52047aed487b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1892, '2025-01-30 17:11:00', 'SALE0984', 1139, 'Grace nyambura', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 14:34:24', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd783783fac1abb0bf1cdee2c8743dfd36c1b2ef9c22346b0aa517cb27450b768', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1893, '2025-01-28 17:12:00', 'SALE0985', 1119, 'Florence Wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 14:34:03', 11, 0, '20900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f4fb21c6c10665301d394c569f6e95df5b207ed9e2ef67c5526953a78f564afb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1894, '2025-01-29 14:36:00', 'SALE0986', 1131, 'Elias wachira', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:48:12', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '62dc87564cf11136cef5be8a441f6c5319246ddf540a8acb71fd2b60da9343b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1897, '2025-01-27 14:39:00', 'SALE0987', 1108, 'peter mwendwa', 3, 'Sagana Plantraisers', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:19:40', 17, 0, '32300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '81e83931641555df025cb4870c4c3460af063d7d56cb478ecac4279723485a75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1898, '2025-02-24 15:07:00', 'SALE0988', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '873c71007b23f1c204197457c709b25ccd3a3aa20736e1462529a62d505683db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1899, '2025-02-24 15:12:00', 'SALE0989', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ba1327d8008052449114398c30e085c095c157a0c8a571617956c8450d2867bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1900, '2025-02-24 15:14:00', 'SALE0990', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '50e6b4db3530b51f2f236cacf887ebf114c5d573da2184b4b25169fb0b5c21d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1901, '2025-02-24 15:15:00', 'SALE0991', 989, 'eric wachira', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:18:39', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1798cb4c130e666e964cfc40bbf0d8b705eb107c53c44714325581164e99aebb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1902, '2025-02-24 15:18:00', 'SALE0992', 1267, 'Moses Njega', 3, 'Sagana Plantraisers', 1, '', '', '70.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '70.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '70.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '771f9b25f0eafec47fcdc7548601d1596f49f7e305ee9b4571be68adfedbcda9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1903, '2025-02-24 15:24:00', 'SALE0993', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '023fcc79be96adb61ccf460bfbc271ac7a2e5a6fd8592bbe37378484c1a65b72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1904, '0000-00-00 00:00:00', 'SALE0994', 1083, 'martin kiragu', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c85717e1879fcb10275c26a461c6b47ae6fbd24524a7a21024f7011bf03fbee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1905, '2025-02-25 15:33:00', 'SALE0995', 593, 'Elija Kiura', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-04-04 16:35:42', 40, 0, '60000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a2a63b7c5738e0d3e1224481a4c600455fe309f9d6cc7f94a5c1d4897d4d635c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1906, '2025-01-30 15:34:00', 'SALE0996', 593, 'Elija Kiura', 3, 'Sagana Plantraisers', 1, '', '', '81700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '81700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:18:38', 43, 0, '81700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2854666ff95847ce54fac3096e389c7271061f54e2fc61799e8fa66e8572ab97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1907, '2025-02-25 15:37:00', 'SALE0997', 123, 'Zablon Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '342000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '342000.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-03-27 13:59:19', 180, 0, '340800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '128bc626a09d295f8eec186940fb9921a54e756ad44c551ad36ab99dce002680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1908, '2025-02-25 15:38:00', 'SALE0998', 1331, 'gibson gichuki', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:39:09', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a59a70e2b68db4ade134927f15cc307330eb7d58957a00d94f1cd9d203b6be1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1909, '2025-02-25 15:41:00', 'SALE0999', 1332, 'Robert munene', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4bb6fe65ec83346ab0d424796c89554c61010975472d040e872feb114337e4a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1910, '2025-02-25 15:42:00', 'SALE1000', 1333, 'Grace waweru', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:38:12', 1, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f84ad658bc3bae773ecd80e4cf63885186d2feea7a944ff1636a6366ddc7acc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1911, '2025-02-25 15:43:00', 'SALE1001', 1334, 'Daniel muthike', 3, 'Sagana Plantraisers', 1, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:19:55', 2, 0, '1400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '500844f67ac8f09f350ca2f1442f1989382c23318a461f7a9e383b6df8358b80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1912, '2025-02-25 15:44:00', 'SALE1002', 865, 'Christopher', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '67c3cc7879656f6e4cc5b5a785939b1894a7f35eec5356bffb313693b8d95af0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1913, '2025-02-25 15:46:00', 'SALE1003', 1118, 'Julius Kinyua', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '57c464a5699a13f04afa48431a685b94b922a5913be39cf42f957d8e9d70ecbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1914, '2025-02-25 15:47:00', 'SALE1004', 730, 'Evan Mugo', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:36:50', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fcc04f97dae18109adc291051dcee4e6791a88d47d164f0233e3c0a100bdcc42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1915, '2025-02-25 15:59:00', 'SALE1005', 1335, 'James maina', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 30, 0, '57800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f73ec9d25ad0b4c5b665e80ba54745c4cc21eafdd86594e7ee35a00028b8282', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1916, '2025-02-25 16:00:00', 'SALE1006', 1043, 'Anthony Githaka', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-21 15:42:46', 11, 0, '21300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9ab27010b0aeb73a6738c7198bb8dc0721acb6cde636206a43de3770395dbd76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1917, '2025-02-25 16:02:00', 'SALE1007', 1336, 'mwaniki muriithi', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6cfb3e8e4dec27d73dabb953a42fdfaf6ef4d7c4058617a6c98523e38e8c5a6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1918, '2025-02-25 16:04:00', 'SALE1008', 1148, 'David Ndathi', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 14:40:33', 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f9e917ef479a1a3e0224546b332280023be3e71744d42551a0ef86c1e7949a4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1919, '2025-02-25 16:06:00', 'SALE1009', 1337, 'Julius njuki', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f654d75eea1cad2fd111f04f6018cf37ab11795b2803029c2483ae51bfb45b93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1920, '2025-01-27 16:08:00', 'SALE1010', 1100, 'peter wamae', 3, 'Sagana Plantraisers', 1, '', '', '51600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:15:04', 29, 0, '51600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b8ca9a60df626ead266b5f31dcb70f56dc43fe2cecb9a2507e0481c614cca050', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1921, '2025-02-03 16:11:00', 'SALE1011', 972, 'joseph murimi', 3, 'Sagana Plantraisers', 1, '', '', '42800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:14:36', 32, 0, '42800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '217ef0294bfe717ac1d8931d62d64b024fc327b404c14069eaa7ff9e05703b4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1922, '2025-02-17 16:16:00', 'SALE1012', 1338, 'joseph 07213674764', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:18:58', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '144b3802baa15b6de04c95fe781efb9d7e40961f2afbf1090e0c6f779c0e26fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1923, '2025-02-03 16:19:00', 'SALE1013', 1169, 'Pauline maina', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:25:53', 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '56a7eb10ab508f4d48fc325fb61ae0b42d1b5da92eaf64a1fa90d5df4001c46a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1924, '2025-02-03 16:23:00', 'SALE1014', 1173, 'Joseph Irungu', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:25:31', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8b4b955ef7e271aa7599d16db933a941b23d7a296e4c2771442c134d5cb317f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1925, '2025-02-25 16:28:00', 'SALE1015', 123, 'Zablon Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2ed10861ed58c662600e1d79a1bc53cfd817f37dc3f3a286901993d374e68a66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1926, '2025-02-25 16:31:00', 'SALE1016', 788, 'Paul', 3, 'Sagana Plantraisers', 1, '', '', '2925.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2925.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '2925.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a423caacafa3b8c56388a13aec7f7f73b998d1db73c9f841208c3cad5511d099', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1927, '2025-02-25 16:35:00', 'SALE1017', 142, 'Stanely Gitari', 3, 'Sagana Plantraisers', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '9000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9e0b969b856ab0475e6985ba34fa3b09b707b38994915fabe85ef38ad02de7c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1928, '2025-01-31 16:39:00', 'SALE1018', 1149, 'Fredrick Maina', 3, 'Sagana Plantraisers', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:54:52', 17, 0, '32300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a924acc44993eb5ed9fb18a8192ace102af77b31975763c73c5af930383ba22c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1929, '2025-02-25 16:43:00', 'SALE1019', 332, 'John Njoka', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5fe0f932eef1712df61b0e11d061d8b5993c76488365eb08a704beb77e7c3838', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1930, '2025-01-31 16:45:00', 'SALE1020', 1153, 'Wycliff', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;collected 5&lt;&sol;p&gt;', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34200.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-04-04 10:03:46', 18, 0, '33000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e7b3b371a19e51418015caa053fa661648aef27b2dc80cd2a69a28d779522352', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1931, '2025-01-30 16:49:00', 'SALE1021', 992, 'michael gitwe', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-25 16:51:06', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '31b7a9c6f14b0d26805b2a938b21bb41485112c3f1d36fd4f8f31bbfccd5d63a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1932, '2025-01-13 16:51:00', 'SALE1022', 1007, 'james githaka', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '71062066242159226e3fc095a0902c53807e6f1eeb671f6aa205517bda5870ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1933, '2025-02-04 16:53:00', 'SALE1023', 1091, 'james dedan', 3, 'Sagana Plantraisers', 1, '', '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:29:50', 4, 0, '6400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5d5bf2627b731ac215160068f9caa9365f54f961c4aa153a38bc89e024296c73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1934, '2025-02-17 17:00:00', 'SALE1024', 1339, 'james murage', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:13:05', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3c3190287527976f64541a82b4dab45669722682837703a8a3f64098ee0f2a9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1935, '2025-02-04 17:04:00', 'SALE1025', 1193, 'Moses jeff', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3b19cc931d0f92e2f1e776325cc2bee5cd72ed8ed6715627751bdeb3a70e9283', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1936, '2025-01-31 17:17:00', 'SALE1026', 1151, 'Anthony Gichira', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:55:42', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'acce7d4c45e3efc1560cbcb41f8a9ed41b19b864ad7d5801d657fbb4dc2123a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1937, '2025-02-25 08:28:00', 'SALE1027', 922, 'Paul Murimi', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:59:30', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd2d968691e40dfc5d96a33a1fcec252c44cee7c88786560383bc684612d8bc57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1938, '2025-02-25 08:30:00', 'SALE1028', 1091, 'james dedan', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-13 11:00:30', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a5c2530e5b1acdaf023c9e06170f7ead2844d4ee9d1b3bcb579774fd9d6ede8a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1942, '2025-02-25 11:46:00', 'SALE1032', 462, 'Peter Gatimu', 3, 'Sagana Plantraisers', 1, '', '', '1365.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1365.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:37:04', 1, 0, '1365.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '158457eec409067f62f666c60fb91a9caa7ece6a8adc94f60ecc4be52b897c31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1943, '2025-02-25 11:48:00', 'SALE1033', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7df82ea59968c13a4e5479d1b313b95185a8ced2fc6397bb404d28bcf64018b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1944, '0000-00-00 00:00:00', 'SALE1034', 1179, 'Nicholas mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2648.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2648.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2650.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f4679123bc9f8209cfe4f322315352b536c652cae8d6d3d341674805d44f5dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1945, '2025-02-24 12:18:00', 'SALE1035', 985, 'mrs kariuki', 3, 'Sagana Plantraisers', 1, '', '', '28200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28200.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 19, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c8a5d1dc279eccff0204d566fa9fc37b79ebaabaaf80ba81539bdd46b218eda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1946, '2025-02-24 12:27:00', 'SALE1036', 1340, 'benson kamau', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a25fb7e6814799653ae8d9f1f5170f33a780c0517a050fed8311e44c191c0732', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1947, '2025-02-26 15:57:00', 'SALE1037', 1341, 'Joseph 0724435630', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 15:14:43', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '66b3f62bfd261fa6c3c43101bb837693f88a5799d47e307d3386ba4efd900ed0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1948, '2025-02-26 15:58:00', 'SALE1038', 1153, 'Wycliff', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '23000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e1a4b51cbc114f4d124065b5677dc20f702f20f699bc0255a3e27e96db97e891', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1949, '2025-02-26 16:01:00', 'SALE1039', 1342, 'eric muriuki', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:48:05', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ccf78216b2bf7a3f4a9ffd1669529086199079a97484f37de88c6708d574a5c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1950, '2025-02-26 16:02:00', 'SALE1040', 948, 'james githaiga', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3f6e056f04375e64348047a77b37c1554b42e18a139bee115a04565f5a1bdaf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1953, '2025-02-26 16:16:00', 'SALE1043', 1036, 'milton wachira', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '286dbc2e1d88b55eb7c48b34c56c41b30e67385b3119fa87753bc91744acb23a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1954, '2025-02-26 16:17:00', 'SALE1044', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '494.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '494.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '494.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2e8d5fad7d11565fa9c65d8b04635c9b6c0c879af19c141e67785a1b097398c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1955, '2025-02-26 16:20:00', 'SALE1045', 1117, 'peter kibuci', 3, 'Sagana Plantraisers', 1, '', '', '14900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 9, 0, '14900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'df1f3da21c528584899bc28eab8908613edbf8f512935539e0113624ac4244dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1956, '2025-02-03 16:34:00', 'SALE1046', 1177, 'Edward Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:19:11', 17, 0, '32300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5def931d98b4768b453160073451df60e32d966047ffdc86bfc58ad33ca3a24e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1957, '2025-02-26 16:40:00', 'SALE1047', 1343, 'peter 0712351069', 3, 'Sagana Plantraisers', 1, '', '', '16000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:21:40', 20, 0, '16000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bfe98829edb1df628d486ba4eb1aa88b33ea6bb5136de456553460df4c61401e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1958, '2025-02-26 16:40:00', 'SALE1048', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1ee85d739163ab71b3d3cc53f93d7be762eeb98dddfec9eb32b2a6404d6e4dcf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1959, '2025-02-26 16:43:00', 'SALE1049', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e49b1282c94aa0c8eb924f60a5d1787d1ce03abe0d78ccb1c4d22dec8906d604', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1960, '2025-02-26 16:46:00', 'SALE1050', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b568aa0ea3f28cc48399d6303eaf30a51ae7e2cf0ecd9b67143ee8f5eeaf6dac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1962, '2025-02-26 16:48:00', 'SALE1052', 1115, 'anthony matere', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9fd9b848853b82b9b7bda353c4aa4302c8a4008fb503ed425c802575d14199ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1963, '2025-02-26 16:51:00', 'SALE1053', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '60780179787c21339bd210223a97c13971107e71958855efdd55a99b07acd217', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1964, '2025-02-26 16:53:00', 'SALE1054', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8a4e771ec9b3478caeadf1150447f7854bbbc3b6f32736434e98322dfb1b27c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1965, '2025-02-26 16:58:00', 'SALE1055', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0e9d6ae1b586ca800e8d045698d09cb4cfde7dd87c968bceab4eeca3ffebc0cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1966, '2025-02-05 17:00:00', 'SALE1056', 1199, 'Janet Beth', 3, 'Sagana Plantraisers', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-23 20:36:15', 9, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4d525ced452e583ff6515a19f8512ede450532bcf7cf29135213915348b5ea6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1967, '2025-02-26 17:08:00', 'SALE1057', 1, 'Walk-in Customer', 3, 'Sagana Plantraisers', 1, '', '', '196.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '196.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '115c8c53564d97c8ecf0198f072a77fdfc111b5bd68ca2d7bd98f809672bf3bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1968, '2025-02-26 17:11:00', 'SALE1058', 1185, 'SIMON MUTHIKE', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected after 21 days&nbsp;&lt;&sol;p&gt;', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'df39dd02b58a0e4206d069f8b7fe4a710e696934879f6c1757848c977e1c914c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1969, '2025-02-27 15:00:00', 'SALE1059', 1168, 'Macharia safania', 3, 'Sagana Plantraisers', 1, '', '', '60000.0000', '0.0000', '1500', '1500.0000', '1500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '58500.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-29 11:10:38', 75, 0, '58500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6b2a3880d4679de57ff2b223821fb63a272ab9869839ce0685b62562f67c97ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1970, '2025-02-27 15:05:00', 'SALE1060', 1344, 'Anthony Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 16:41:23', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9f8c1f92cd0956bf11b1cdf9fc14cce04fd07deee4a1c90cb51036bd6ad43c09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1973, '2025-02-27 15:09:00', 'SALE1061', 209, 'George kibicho', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 11:57:17', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '60ece3b81ba5a45c1373d72608564065547fbde6bcf72572ae0594da2d65223b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1974, '2025-02-27 15:13:00', 'SALE1062', 1345, 'George Nzomo', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 40, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '721a0ef241303dbbc9a518b6015b40fd55119759e744d23d187ce96bda6cdbb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1975, '2025-02-27 15:17:00', 'SALE1063', 1346, 'Raphael Muriithi', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9773ffd43e938e6151b9c5aa9df872ebe45cb721851e403d1c76e02ce616d8ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1976, '2025-02-27 15:33:00', 'SALE1064', 386, 'Joseph Macharia', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dc662c90491fd571a5bed3bff5bc9cd4eca6bb7105b21b2e98577452cf787c44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1977, '2025-02-27 15:37:00', 'SALE1065', 1347, 'Robert mwangi', 3, 'Sagana Plantraisers', 1, '', '', '15400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 18, 0, '15400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4fd2d99244b29a20ca89e391578850a738d05886cec312213ee29d49897373ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1978, '2025-01-28 15:43:00', 'SALE1066', 660, 'Joseph maina', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:17:40', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2f08221248a1292b70c5c651d1f0ce98f5cf2ceba3e8882d474c0f3816b0de54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1979, '2025-01-31 15:53:00', 'SALE1067', 1150, 'Paul Muriithi', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:15:17', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '930c522ba6b142b4cdcf3d063f99c0335a58167e3dc4d3971f5c5bc756db79f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1980, '2025-02-05 15:55:00', 'SALE1068', 1203, 'Reubenson murimi', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '034b419a723bed6c50b70380d0f7d751e3bbc2ec607306706217a717aebee31c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1981, '2025-01-30 10:13:00', 'SALE1069', 1161, 'Paulo kamau', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-02-27 16:15:34', 30, 0, '57000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ebc7c9c9edeb20916ae7afd27385534dbf8383a779df20a8f05923be3720e195', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1983, '2025-02-03 16:21:00', 'SALE1071', 1174, 'Gideon kinyua', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '48945c619ae836e2ca2c6ad696c1fa0210a8d65dd5bd68b0b7a27f85199addad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1984, '2025-02-03 16:26:00', 'SALE1072', 1278, 'Stephen muthee', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '55dd719f8942cbbfc8948eccc9508700105eea2fc628b09af8c4328bba570faa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1985, '2025-02-27 16:30:00', 'SALE1073', 1162, 'mr munene', 3, 'Sagana Plantraisers', 1, '', '', '5800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5800.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cf34376f233c3d768ef4f8a27120dc3525e487ae3570c1610fd56e3e639eacc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1986, '2025-02-27 16:35:00', 'SALE1074', 1348, 'andrew muturi', 3, 'Sagana Plantraisers', 1, '', '', '728.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '728.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '725.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f20d4f8420928788aa43c2961cb1baef8403ced699f4a01c4a6ad11968609bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1987, '2025-02-27 16:49:00', 'SALE1075', 738, 'David Gichira', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3f1dab6528294d701b31a7944c009285b04c5d091c367c387c4cdc44b0258825', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1988, '2025-02-27 17:07:00', 'SALE1076', 1349, 'purity chomba', 3, 'Sagana Plantraisers', 1, '', '', '13400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:45:26', 8, 0, '13400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '019160803bf98d3c57981db3f81f66c7d56c02bc822f2ad35bee2b3a8a0750b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1989, '2025-02-28 16:01:00', 'SALE1077', 1350, 'Erick mwangi', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-04-04 16:46:39', 1, 0, '600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0e78c69b357f7663ff2356e1bb12170f0e8483e420271ae7ca7bd8a3d84e2141', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1990, '2025-02-28 16:03:00', 'SALE1078', 1351, 'Gerald karimi', 3, 'Sagana Plantraisers', 1, '', '', '11600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 12:04:38', 15, 0, '11600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c3d6f99058f4d31211ce62948ac9c15b41639e4cce840e6626b65eb024eaa816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1991, '2025-02-28 16:06:00', 'SALE1079', 1352, 'jane kimundu', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 14:20:49', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '30907ced55e944407bc44e7f764170f4e40985698ee87be561f84197474f490c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1992, '2025-02-28 16:09:00', 'SALE1080', 1008, 'beth', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-03-23 20:27:04', 30, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '90b91cc4754c6159940a21224d22da28a895fb8f7abf45e67d82eae210184991', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1993, '2025-02-28 16:13:00', 'SALE1081', 1353, 'jane 0726713626', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa100f4cf2f975927f81736b3563ad4d895de966c202685fa68560ef93777086', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1994, '2025-02-28 16:16:00', 'SALE1082', 1354, 'john kinyua', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ce7dfa4c031a46920fb4fd1df100e592c1a1c546575cadc6c949b4ea129aa702', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1996, '2025-02-20 12:35:00', 'SALE1084', 1356, 'joan', 3, 'Sagana Plantraisers', 1, '', '', '16250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16250.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 25, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e41e1b85cbfbca46a99bfc230d4e5d6f902562e9538b378ba3c1373fbcfba1dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1997, '2025-02-20 12:36:00', 'SALE1085', 841, 'Shalom', 3, 'Sagana Plantraisers', 1, '', '', '7475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7475.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 12, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd3f6045cd7740547d839500e114fa9236c9b3783b57e9d17c4736febbf8c1080', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1998, '2025-02-24 12:37:00', 'SALE1086', 1357, 'kangara', 3, 'Sagana Plantraisers', 1, '', '', '3850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3850.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b27fff5ff5ae3eefbd1d54ad7f940d7f17d0eb24a772e0d1972fff3908a8ccc1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1999, '2025-02-11 12:39:00', 'SALE1087', 1242, 'Brian  Munene', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:23:32', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8312af3b64774c4ea4e576a276b57e39612c58e2e67427a99334ec94954fec47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2000, '2025-02-28 12:40:00', 'SALE1088', 778, 'Laston', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'due', 0, NULL, 13, 13, '2025-03-06 20:50:07', 8, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b90877f12a8993eefb3091e5579bc4043129794139a2e3470663ac438910568d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2001, '2025-02-11 12:42:00', 'SALE1089', 1243, 'Paul Gichangi', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 09:26:42', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c89771980530f232528d85b1bbd61aba4a9eb9f7e3894f871b34a14992d28a14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2002, '2025-02-11 12:43:00', 'SALE1090', 1245, 'Lukas Gitari', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:17:06', 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f224eb7fe2565caddd2be14624e35fbe0c2d03aa1540086af28fef055d28b1e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2003, '2025-02-11 12:44:00', 'SALE1091', 1244, 'George eric', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:49:15', 11, 0, '20900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e5b26c2102f29ee84391772b90fd27caec96e94ccec9bc21b34aa087f42698f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2004, '2025-02-11 12:47:00', 'SALE1092', 614, 'Jeremiah Maina', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '8000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b50e1a5298f0e4e4ab8ed71cf381a7911c33f1e19f1e9eaa4d445d960ff3e099', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2005, '2025-02-12 12:48:00', 'SALE1093', 1358, 'julius 0723633626', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:47:58', 9, 0, '17100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '21e38603f76a82f769b8639ab8dea2df57fbd36492f4e6959c9455f54c82185e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2006, '2025-02-12 12:53:00', 'SALE1094', 1128, 'Jane  Catherine', 3, 'Sagana Plantraisers', 1, '', '', '24798.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24798.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:00:10', 31, 0, '24800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '881b357500c2562809e246a59cdc0d9ed39cc72ef0cd4f6922105f733af04712', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2007, '2025-02-12 12:54:00', 'SALE1095', 1359, 'lucy 0720636529', 3, 'Sagana Plantraisers', 1, '', '', '5800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '5800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5c9571697e23209695343f94339374f9e96111619b400236d85ae3a21197174b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2008, '2025-02-12 12:57:00', 'SALE1096', 1114, 'Danson wachira', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:46:28', 4, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ee5988335efa75067c880825452d79d0d8eb31b67af794a7fa3198b69907061b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2009, '2025-02-12 12:58:00', 'SALE1097', 1249, 'Aloise mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '2800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '17c7d136face286842bf251000ecc1e88cd9a1f3654cab14f900f8bd7f54e2fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2010, '2025-02-12 13:00:00', 'SALE1098', 1250, 'Lydiah  mutugi', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:24:29', 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2e1e6638cb42ac8c0e71c971762d229add1299a42114db8624541d16db2278ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2011, '2025-02-12 13:00:00', 'SALE1099', 1251, 'peter karani', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-06 20:46:08', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9dd45c7e664108ed3831608b17a44f6cf3d3465ee6610b8f4a15550cda785d78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2012, '2025-02-12 13:02:00', 'SALE1100', 208, 'Benard muraguri', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:41:27', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e55abd647027f97a7061354d6d3ff316f26370e7e610514385a33cbec4d40499', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2013, '2025-02-12 13:05:00', 'SALE1101', 1253, 'james muthhii', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7ff595060bfa349a792628222e8522fe8bed84242158cbf82a21e0a68a30ced4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2014, '2025-02-13 13:20:00', 'SALE1102', 603, 'John Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '47500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 25, 0, '24700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7fe6777f2ef89ccaa578b0608e0a11a81dfcbc7fec755e85f6c98d9bdba26651', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2015, '2025-02-13 13:22:00', 'SALE1103', 1223, 'Joseph Kimani', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:28:02', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f148009f891411862763c63a739c0e11e886154560190293af3b5e36787cb547', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2016, '2025-02-13 13:23:00', 'SALE1104', 1277, 'Festus musau', 3, 'Sagana Plantraisers', 1, '', '', '58500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '58500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-04 08:39:54', 32, 0, '58500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '674225e8c011b3751782f0b344f9546f621a80fa88db10e10b15784588e5a393', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2018, '2025-02-13 13:25:00', 'SALE1106', 1013, 'leonard muthii', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7bda5ecdea8ea7d54115c460656324069ecbf10f3aa323230597872c4acfd140', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2019, '2025-02-13 13:28:00', 'SALE1107', 1279, 'Pauline Gitika', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:37:22', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2969ea33b8afa7af1eb76081e406203102f27d9bb8bc24af21570fdc561dc453', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2020, '2025-02-13 13:29:00', 'SALE1108', 1280, 'Nahashon wachira', 3, 'Sagana Plantraisers', 1, '', '', '19200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19200.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '19200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0582fc27a8e928d65ad101b073bc9886883bfde185b21ab5097d8a058e151ef1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2021, '2025-02-13 13:31:00', 'SALE1109', 1281, 'Paul ngari', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1fbef662c1ecfabe17991134dd1c40ef30ed73d64dfff4d6d0e9598afbb5d5c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2022, '2025-02-14 13:32:00', 'SALE1110', 1360, 'irene muriithi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 11:48:34', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a311dcde72e64ee0a00ed175930da90c07299d731478f01690efdf4e8ee15b58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2023, '2025-02-14 13:34:00', 'SALE1111', 1282, 'Monicah', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '42be2ae365d530fe857a5461c3dfc96b01c4ea549d51889721102390dc2eb80d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2024, '2025-02-14 13:35:00', 'SALE1112', 316, 'John Maina', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '859b4fa1f6fee63b65eec4c00eeccebc0e3090afe002088d629c02bdfd1919aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2025, '2025-02-14 13:36:00', 'SALE1113', 1284, 'Edgar Bundi', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0891c82d8aebe359f446538624a289d7471c969beeada8b9dfe3e79432ebb1c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2026, '2025-02-14 13:37:00', 'SALE1114', 1239, 'consolata wambui', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:18:39', 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd2352e8700183546f3190854998a4de73007d0db041dcca875d7d818d9ce961c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2028, '2025-02-14 14:09:00', 'SALE1116', 1286, 'Ephantus Bundi', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 40, 0, '77500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a0f95466493eb57def7c2c2d31b5f92828fb28ef91681d0137650a5a1fae88d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2029, '2025-02-15 14:10:00', 'SALE1117', 1287, 'Fredrick Muriuki', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 12:00:09', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '46d282611ebae5eb0105d52a8a2b18e5616de4fd6d986efb1222924e958724a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2030, '2025-02-15 14:11:00', 'SALE1118', 261, 'Francis Mwai', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-02 14:14:10', 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ac98369f711b37169eb65670318a9caf901bb949b06a1d533cda66014b28b14e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2031, '2025-02-15 14:14:00', 'SALE1119', 198, 'Samuel Kamau', 3, 'Sagana Plantraisers', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10400.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '10400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7c1c0d43becb3a95fd04dcb748f0cd7d013c26b80adc051c68f1b5612a311002', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2032, '2025-02-17 14:16:00', 'SALE1120', 1290, 'Jonathan', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '951d0e16eb322dc10c7f67eed84610864da7740aa8f7429b5988c847aeec8fdb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2035, '2025-02-17 14:18:00', 'SALE1121', 210, 'Ibra', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'eef487f63f296e11a573d0c07f61a0badfb0ef94bedd1492c0ca45005022cff6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2036, '2025-02-17 16:09:00', 'SALE1122', 915, 'Ebenezzar', 3, 'Sagana Plantraisers', 1, '', '', '95000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '95000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:10:32', 50, 0, '100000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1200d279ee3282aa6b2378b439786b5704d4a7a0cba51d15b5265379f91cc32f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2037, '2025-02-17 16:10:00', 'SALE1123', 892, 'priscillah wanjira', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 11:49:45', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8b78ac3f9a271a076020b23bd839e0c2585d4a3fe714a67c41947b7d6aab09ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2038, '2025-02-17 16:11:00', 'SALE1124', 1179, 'Nicholas mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:59:12', 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '99eeff28111fb22ef723ffefd14f6c912c1a0e6e46169f7f1290c6060cb64965', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2039, '2025-02-17 16:12:00', 'SALE1125', 917, 'Peterson Mwai', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b07d2164002fc2d3c4409e01df46768bb8adf89e59a69b00a9c6fb8b181d3044', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2040, '2025-02-17 16:13:00', 'SALE1126', 146, 'Pastor', 3, 'Sagana Plantraisers', 1, '', '', '5100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5100.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 11:58:27', 3, 0, '5100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '41d17191ff29e385b797700038223ad77f4c3fb2ea57e1459340b5adc9f891d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2041, '2025-02-17 16:15:00', 'SALE1127', 1361, 'maiko munene', 3, 'Sagana Plantraisers', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-02 16:18:35', 5, 0, '6500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b0d71624ca263a9972eed6b9c118b4075a8e5df9734940649c0c9914dec78f9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2042, '2025-02-17 16:18:00', 'SALE1128', 1362, '0724752782 damaris', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 10:01:44', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f104e7f6b618ff20f82d7bea86aacaf9f206a77c311cc5f8a2c6a1bb469a1d3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2043, '2025-02-17 16:21:00', 'SALE1129', 1363, 'anne wambui', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '740a73a1da16753c8cebf5055721db439c4623d6121effbae47e61eccfa31894', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2044, '2025-02-17 16:22:00', 'SALE1130', 1122, 'Christopher Manegene', 3, 'Sagana Plantraisers', 1, '', '', '47500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47500.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 25, 0, '47500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '22059828798884bd6d941fc62536376783e982006858c2ae9d77eec40057c5e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2045, '2025-02-17 16:23:00', 'SALE1131', 1364, 'stephen kimotho', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:11:11', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e77e2889caded970ec8417abb9dbb4e0723362091a671969557c85f7e63ed1cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2046, '2025-02-17 16:25:00', 'SALE1132', 1365, 'jenario gikunju', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:59:20', 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0b6c39b78ea64a3e7cbfd7050d634b4eea674e9919de2fad9dbceb7a5f84bbba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2047, '2025-03-01 16:26:00', 'SALE1133', 1366, 'andrew githinji', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 20:37:51', 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fcc7e5d414fce492b1a85c025f2508070189d22d1a31053b9f8ea0aedb9fee64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2048, '2025-03-01 16:31:00', 'SALE1134', 337, 'Nahashon waweru', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 08:25:51', 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1235ff493f9c39ca1d50768ba3ac9e06fdcad0fa566de27692d6e40427d5f902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2049, '2025-03-01 16:33:00', 'SALE1135', 1368, 'michael muriuki', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 11:58:19', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e6c05edcf24c909d215bb7f41d76ca4b2be7fdd1a8bc3c3c4418804457c8fd59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2050, '2025-03-01 16:34:00', 'SALE1136', 1369, 'francis waweru', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 11:26:13', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '68bab12accf860b64714ee12638c06508cbc0a17715e73018578e3c04a1befaa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2051, '2025-03-01 16:36:00', 'SALE1137', 1370, 'geoffrey waweru', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-11 09:36:00', 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '79fa3b15df51ebda89f3b111e643e17a1766c776ba33193488e5f039bb349350', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2052, '2025-03-03 16:29:00', 'SALE1138', 1371, 'cyrus kithaka', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 10, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa980fa413defe683af67c584818d63fcb64aa9820f1efdac65760135f755f05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2053, '2025-03-03 16:29:00', 'SALE1139', 847, 'David', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 30, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3021e175ac1dd80780b6dd756050c7e1ddd6a4fef5b17f67a1ce5d1aab9e7cc8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2054, '2025-03-03 16:50:00', 'SALE1140', 1372, 'jason mworia', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5c316c7c84d481f84a7956bfb418591decc13ff9452078678b3641ca16edbb2c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2055, '2025-02-01 16:54:00', 'SALE1141', 822, 'John', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '20000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9f8ee2dd118d1d594223a779b822b95a692f332e6a812bb5f6f7822d884f661a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2056, '2025-02-01 16:57:00', 'SALE1142', 822, 'John', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '20000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7fc244b279782c6375a4004d1c1b652c72c35877af8830e6a1a221465ef4a1d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2057, '2025-03-03 16:58:00', 'SALE1143', 1200, 'Alice wairiuko', 3, 'Sagana Plantraisers', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '6000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3ee698a6abdf009a16e881e5146d629a5db0eff893ba4d54fd6863b3c172cea0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2058, '2025-01-25 17:00:00', 'SALE1144', 1106, 'patrick munene', 3, 'Sagana Plantraisers', 1, '', '', '114000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '114000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:17:29', 60, 0, '114000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4066926132146f020feafdaed758e89a393323bad6d228ce9ccd5e6ed0519db8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2059, '2025-02-07 17:09:00', 'SALE1145', 192, 'Joseph Muchoki', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 20:49:58', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f3f0164d0582884975dbdd7630d290a6d3210432173dba72cc5d73fac3c64f5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2060, '2025-03-03 17:12:00', 'SALE1146', 1373, 'richard waweru', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd32adbd13e2b6bfe9fd5240cd318774aea69a54097882e30d70875e88b1acc8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2061, '2025-01-30 17:13:00', 'SALE1147', 1144, 'Pauline Muthoni', 3, 'Sagana Plantraisers', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:51:01', 13, 0, '24700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b723473251d428c56e744d01966c950ffaaadc33cc8fb0d5e7b1dae0958675cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2062, '2025-03-03 08:24:00', 'SALE1148', 1374, 'josphia mutugi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b11208f17fc82e955f8fddf2c79d31ff12513c9210aaf5197247d66ad5476327', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2063, '2025-02-05 08:32:00', 'SALE1149', 909, 'Charles Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:20:51', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a7b7440e52e4e7f0265a948aff344539f6fb3ca3f8b2559e9af47d2e4d63922d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2064, '2025-02-11 08:56:00', 'SALE1150', 1240, 'Jacob Nyaga', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 14:17:33', 15, 0, '28500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f1eb0afc006f75aa8d854609a1ebe71c959cf1b68d56a8d821b26859e3181564', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2065, '2025-02-01 09:09:00', 'SALE1151', 1180, 'John Mungai', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-06 21:39:04', 20, 0, '38000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '00de0b7c5847a98d9f94572f58e0b86b57ef7b46e0cf69d1908d4ec47951e3cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2066, '2025-03-03 09:15:00', 'SALE1152', 1375, 'john mureithi', 3, 'Sagana Plantraisers', 1, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '57cc859adc1b83c2c2b990798b6dcba18cdfbe9c853bca29bf763d55ebdcb2a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2067, '2025-03-03 09:29:00', 'SALE1153', 1376, 'peter  muriuki', 3, 'Sagana Plantraisers', 1, '', '', '600.0000', '0.0000', '1.50', '1.5000', '1.5000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '598.5000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-11 15:58:24', 1, 0, '598.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '44f1e1ecc57bd36c45c98fee621045f9bb45049b056365e706c02a3a24bd1981', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2068, '2025-03-04 08:22:00', 'SALE1154', 442, 'Patrick Mundia', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5fcd4984b1d9810b727b26793f3cab27afa56e437e9b5a755cbecc385f3ffc78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2069, '2025-03-04 08:24:00', 'SALE1155', 1377, 'Jane0710171268', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3fc1076280635af995113a605f3215ee58e66a68ca0a5366b9dee87c1a0ff591', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2071, '2025-03-04 08:32:00', 'SALE1157', 1378, 'manasseh murage', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 14:34:07', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '866a9bff5e81467de59cd053520cbe2ff25c6459d75ca6f6e891b5e7c28f0b14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2072, '2025-03-04 08:56:00', 'SALE1158', 1301, 'Josphat mutahi', 3, 'Sagana Plantraisers', 1, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'eb91fee2e2b53332d2dcf99373a846d679527fd5d6390eb7490dddf67bbb2dda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2073, '2025-03-04 09:03:00', 'SALE1159', 1379, 'Samwel luta', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '72c29f214ee0d5b27769b50be8021188508fd7b2698dcbfdd12d4ffc37e9c436', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2074, '2025-03-04 09:05:00', 'SALE1160', 980, 'edwin wakini', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7902f3dec99f8d1f2eb4d69fcbb3ca1c931e1b54e6fa9aa0092c32ad11914033', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2075, '2025-03-04 09:25:00', 'SALE1161', 907, 'Ambrose Bundi', 3, 'Sagana Plantraisers', 1, '', '', '114000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '114000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-13 09:29:17', 60, 0, '114000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0d70001ff1328e6718b703e69db1feac4f793b6835526cf97a3577f162e7df55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2077, '2025-02-04 09:36:00', 'SALE1163', 821, 'Jamleck', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-17 10:06:33', 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd876afe89ca1850da028b33f338ba45f791c0626b0b0e64f75229cbb9cfbd6bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2078, '2025-03-06 20:10:00', 'SALE1164', 1083, 'martin kiragu', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '800153fd4c698bd754894a384181a550d1276e4a6c6af857f378a8b4a36949fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2079, '2025-03-06 20:11:00', 'SALE1165', 1200, 'Alice wairiuko', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 13:04:22', 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '131f15aa5e5c64fa595f41a8c57c1a040d4f44d350a9cee08c6b416c0398b738', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2080, '2025-03-06 20:12:00', 'SALE1166', 1016, 'johnstone kiratu', 3, 'Sagana Plantraisers', 1, '', '', '25600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 16, 0, '25600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1227e1076485ae06947cf696ebe43ca71e5185552b94ed15927918d3b6f791f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2081, '2025-03-05 20:19:00', 'SALE1167', 693, 'Eliud Muthii', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 09:25:29', 15, 0, '28500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6e4f7fcd530004683c031a223c435d393b7bccd444e950d495a1ba1890443c33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2082, '2025-03-05 20:21:00', 'SALE1168', 1382, 'monica kagera', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:31:51', 3, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a5ad106b5168e158bf446845ec1b24fa4676f46aaf64627902e74caa2327ee5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2083, '2025-03-05 20:23:00', 'SALE1169', 601, 'Jeremiah Kareithi', 3, 'Sagana Plantraisers', 1, '', '', '30000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30000.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 30, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '54ece919f4ffdfddf5aa82da4bc050812f8b3cb87b26d022bcb25ef764721909', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2084, '2025-03-05 20:24:00', 'SALE1170', 1383, 'mary ngiriri', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 09:54:48', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5a8326c82f86ac3a101033e699acbad6d6c3bca723842da2b90c97a473a2a1ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2085, '2025-03-05 20:26:00', 'SALE1171', 354, 'Danson Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-04-01 08:30:04', 40, 0, '68000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1a7c7f37971f6164ccf1931622ed8a860ab13f5703e6ce9a1bf7cc648b795adf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2086, '2025-03-05 20:27:00', 'SALE1172', 579, 'Stephen Muchoki', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-03-31 15:19:03', 5, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'aff316eec61b8b5e619b3a0b57569b532f4d55d67e5e2b35a496b4195b591890', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2087, '2025-03-05 20:28:00', 'SALE1173', 1161, 'Paulo kamau', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bdb66644c5477aefa2a365e24e750b299f84091acd074faf40f4f3161ec031f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2088, '2025-03-05 20:29:00', 'SALE1174', 1384, 'peter wanja', 3, 'Sagana Plantraisers', 1, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ef1c9fc3dc7eddb6a2e514e5121a7949d280167c0f3f775299d79c0ed926bb55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2089, '2025-03-05 20:31:00', 'SALE1175', 1385, 'Jane  wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fafa7fb055ef59e75e35ce8e84b29275f36e3aea3fc338eb4c90ae0fb6caf846', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2091, '2025-02-28 21:26:00', 'SALE1177', 1386, 'Wilson chomba', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fb1d029f40b204d2d93a711d5ce50342269e069655c61011d1a1f503a803d800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2092, '2025-02-28 21:29:00', 'SALE1178', 304, 'Daniel Muthike', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4a9a3ebb00a0a09e90ba4d3f329f72661749d12d57a7c746e898c7abb6300574', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2093, '2025-02-28 21:35:00', 'SALE1179', 1200, 'Alice wairiuko', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '09538b030c8b4c32c5061a8b4e97d452e5c26eab794f8ba49903f45f99e96b82', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2094, '2025-03-03 21:39:00', 'SALE1180', 1200, 'Alice wairiuko', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '20b3b4bea2d91538aefec4ab6067a54947705d1018336d0d350054e7be36eefa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2095, '2025-01-31 21:44:00', 'SALE1181', 1017, 'christopher muriithi', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:52:20', 30, 0, '57000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'abe6814fb5e8bfe53986980bfba3786a9545bb4744765d640d24a954c2b2723f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2096, '2025-03-07 16:23:00', 'SALE1182', 913, 'Wilson Muriuki', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 40, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a670bd8f3f6f2b340d1a988061c093f5c5626f14b86cbd4056a4ee0e660ec111', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2097, '2025-03-07 16:28:00', 'SALE1183', 1387, 'Rosemary magondu', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 11:56:21', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '421bb8ae5d51b3764ddf870c6ed898b6b6897b942b255bd4b369d29bdde9368e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2098, '2025-03-07 16:35:00', 'SALE1184', 1388, 'Jeffitha cubi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 11:58:48', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '658d60724c9c0bc66db42dc9c8a9d19afed4979d1ddfb3db2ccef5769cf08122', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2099, '2025-03-07 16:35:00', 'SALE1185', 1159, 'Anthhony murimi', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b474d794b60fbfa3d7982e4ab8e66b5722e1f34d5de5fc39064f23db1db263f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2100, '2025-03-07 16:37:00', 'SALE1186', 1313, 'kaminja', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 13:09:39', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '466980777418c801664dad187229743bcd5ffa415e02863f86ef7884c3961ac0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2101, '2025-03-07 16:38:00', 'SALE1187', 542, 'Benson Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 15:27:24', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '18fd85fb08a4e04e77996a3d694df30f8cf83ba2888d59f66bb0e842f19d6398', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2102, '2025-03-07 16:52:00', 'SALE1188', 1389, 'john munene', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 13:10:31', 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9b4eff65f49388bd6804499188c371dcaf16aaf2efe7a513ea59b2a2834f4200', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2103, '2025-03-07 16:53:00', 'SALE1189', 1390, 'moses kagema', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 13:11:01', 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '829866c59203db84ee815cb530b9ac8af239fcf0e438ac06890665189adbebe3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2104, '2025-03-07 16:55:00', 'SALE1190', 1391, 'John thiongo', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd0cc5c7a14353ffda333656770119f27eb07a861faa65ad95999ac34a66553fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2105, '2025-03-07 16:57:00', 'SALE1191', 894, 'Anthony Mbula', 3, 'Sagana Plantraisers', 1, '', '', '72200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '72200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 13:20:45', 38, 0, '77500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6b489d28da7fa8090ea4d2c9f464b8b6144d888cb8ae022c6c812e236b9d1e1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2106, '2025-03-07 17:49:00', 'SALE1192', 857, 'Alex', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '4800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0367cb46f09a64ee3f453e051e44b64c871e386025ab6df65cbfbfbde5be1b7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2107, '2025-03-05 17:56:00', 'SALE1193', 1392, 'agnes wanjiku', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '75900ceb814d4fab1f715a376aeeda70016bcd8d1b0927dc15dccdfebdabd976', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2108, '2025-01-28 17:59:00', 'SALE1194', 1124, 'Julius Mureithi', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-07 18:01:14', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ec8eb4dbc92055f7d49a1d98f26ce79946848b136b9b0f85e8cd2da13e6bc2a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2109, '2025-03-05 18:06:00', 'SALE1195', 1393, 'john kyalo', 3, 'Sagana Plantraisers', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '53898c8898bafb6ba7733c6df76cd4e602f95c4c2e18fd08b42832fd3dd248df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2110, '2025-03-07 18:11:00', 'SALE1196', 1394, 'brian muthii', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '558f153f8804361cd8610a507d1917266bc57f92a2b169a13fa96867ef983e2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2111, '2025-03-06 18:21:00', 'SALE1197', 1395, 'douglas wachira', 3, 'Sagana Plantraisers', 1, '', '', '8125.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8125.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 13, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '18128e67d1aeea2bb6f685739dc13cc91b950460e67b462bdb17bbfea36f42be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2112, '2025-03-07 18:24:00', 'SALE1198', 1396, 'hoseah kangangi', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd3b7d558e485fe5ec6fe04321c227a6911f0637864fd9ff0358f08c77445d93f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2113, '2025-03-07 18:29:00', 'SALE1199', 1256, 'muriithi maringa', 3, 'Sagana Plantraisers', 1, '', '', '4900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '4900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e5e24bf3d6df737ab0b36efcd383b9e1b98ca49456a5820478cf9303258861c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2114, '2025-03-10 10:02:00', 'SALE1200', 1397, 'John karigo', 3, 'Sagana Plantraisers', 1, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:14:44', 3, 0, '3250.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b32b1c5448b1787ba7302436ed8d60f2b208690e8cef034d1accfecf657c1329', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2115, '2025-03-10 10:04:00', 'SALE1201', 1398, 'james 0717208571', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ab43b8190a131107b85a52c570323a28102f994a111f5836ec4de9ac14ccff67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2116, '2025-03-10 10:07:00', 'SALE1202', 1399, 'Duncan warrui', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 10, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '195ff778995bb39421dceee72bb367083610ca596cff6e4f892b40128ce6d457', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2117, '2025-03-10 10:23:00', 'SALE1203', 1400, 'josphat mwangi', 3, 'Sagana Plantraisers', 1, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f9a61519056d148f369e1cbcf27fa63b6a46c6059a8625701e7b1f5c9c8d0889', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2119, '2025-03-10 10:30:00', 'SALE1205', 1175, 'zachary kithaka', 3, 'Sagana Plantraisers', 1, '', '', '28600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28600.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-11 10:45:47', 44, 0, '28600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd0ffe4d53adf3bcf91302fcfa9b0f45f2154cf8de5f4d129b8e9ffcb0f5e10f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2120, '2025-03-10 10:33:00', 'SALE1206', 1401, 'charles wabuiya', 3, 'Sagana Plantraisers', 1, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:50:49', 2, 0, '1950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3273b5f2ec7202cb608602069174a31e80cb2dee6a1c182f52798621a74e0830', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2121, '2025-03-10 10:39:00', 'SALE1207', 1402, 'rockfeller murage', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '090dbbe9004a0912b44447e30433c8e8a5d4172c1877fd8adaeae8df09b152ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2122, '2025-03-10 10:41:00', 'SALE1208', 1054, 'Ibra', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;paid by millicent&lt;&sol;p&gt;', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '389458e4a40b3915b5ef1d3cea433fe7fc1d5b5a1cbb02ea6186f53ed9721e58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2123, '2025-03-10 10:42:00', 'SALE1209', 191, 'Geoffrey Kinyua', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 11, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '244d29b01c25a4e97415e0273aaa11861c93cf30046e9e923758a9c5d7cc63bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2124, '2025-03-10 10:43:00', 'SALE1210', 1403, 'charles 0743266125', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 30, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0b58f8eedfc6683b6a40268b3e38b1f3d09afe82022c01fef6d0b762e679dbdd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2125, '2025-03-10 10:47:00', 'SALE1211', 1404, 'Bedan mwangi', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '650.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4fbfcd826a6a62cd17fbff490d1182a54e7d8fc24aa04a244e4855f52f0d7be5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2126, '2025-02-19 10:59:00', 'SALE1212', 1312, 'Johnson kinyua', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f8c6d36486c59fa819ddfb53581dbc84470578039f950dcd4ea18bac943803ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2127, '2025-03-10 11:05:00', 'SALE1213', 1380, 'Douglas kamau', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '4500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ccb68c56e703fb6736483cf4d1e5d6d2c01b062d9a0ae91ab073aca63fdc7cb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2128, '2025-02-28 11:06:00', 'SALE1214', 1380, 'Douglas kamau', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '21000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd90750f60807a8984125be434e0db29277ed331269ea68da3bfdad6da85bfa48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2129, '2025-03-10 11:15:00', 'SALE1215', 207, 'Patrick munene', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 30, 0, '6000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5ab11b823acd4723f2199395afd14176be107a02d92f6a4780504ceb04ffc808', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2130, '2025-03-07 11:37:00', 'SALE1216', 1358, 'julius 0723633626', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:35:32', 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2fe0f1df802ec0f249c4dca2cd3db4c936a2276d9981d56ab154da3fa6ab0757', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2131, '2025-03-10 12:18:00', 'SALE1217', 1405, 'roseline cherono', 3, 'Sagana Plantraisers', 1, '', '', '957.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '957.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-11 12:30:36', 1, 0, '960.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7dc668109932f70fbea2583aa923d780babc364a32d853eb765267389ed650b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2132, '2025-02-01 12:26:00', 'SALE1218', 1181, 'Gabriel maina', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-31 13:58:40', 4, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '79183b32f6b836ccb50d957ad28755aaacff3145443e6c0dc7fa1ea2eafd74c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2133, '2025-03-08 15:41:00', 'SALE1219', 1406, 'Benard mwangi', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:44:31', 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1d2b4a913cf6494595e66014593155752cd2341a56e8839ca3affb91fe7ef9ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2134, '2025-03-08 15:43:00', 'SALE1220', 1407, 'faith wairimu', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:45:02', 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4cf8c559c660b76e71dbafd6ea7a00435063a2c9612d29047117ec29994d4017', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2135, '2025-03-08 15:45:00', 'SALE1221', 1408, 'harrison njeru', 3, 'Sagana Plantraisers', 1, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:46:01', 6, 0, '7800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5015398aaeeee1568c3fb99b7de89541d104ab98206a2805eb01328d98b83c9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2136, '2025-03-08 16:00:00', 'SALE1222', 1021, 'Erastus Mburu', 3, 'Sagana Plantraisers', 1, '', '', '1995.0000', '0.0000', '2.60', '2.6000', '2.6000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1992.4000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3c1d0e29afb5f5f95f4ff887e2ea9ae5476179159e969586e8be59260359f16a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2137, '2025-03-11 16:24:00', 'SALE1223', 1409, 'stephen muriuki', 3, 'Sagana Plantraisers', 1, '', '', '13000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:56:16', 10, 0, '13000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1a09a484b7b83148ae9b41b373df6f266e1cffd9f3c9ccca1d487eaa9b29a418', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2138, '2025-03-11 16:27:00', 'SALE1224', 1410, 'janet wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e8bdb6eb7d9713a33fb3e1117666f3447243014d5016503b6b96e8492bcfa3ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2139, '2025-03-11 16:29:00', 'SALE1225', 1411, 'nelson njenga', 3, 'Sagana Plantraisers', 1, '', '', '19500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19500.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '48818237fe722dd7da6d382fc95d48b485cce4ac15d154c6bb35b2471dc2c973', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2140, '2025-03-11 16:34:00', 'SALE1226', 1337, 'Julius njuki', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '41a67d9f7287f2290de5146d281a47f4e4c97a4a327938d0d814c021f2589869', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2141, '2025-03-11 16:46:00', 'SALE1227', 1412, 'rosslyn kiplangatt', 3, 'Sagana Plantraisers', 1, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '796d6ca33f03cabae631ba810e221e004f74d49e2bdc12bbe141578139347b9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2142, '2025-03-11 16:50:00', 'SALE1228', 1396, 'hoseah kangangi', 3, 'Sagana Plantraisers', 1, '', '', '456.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '456.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '460.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cf6c08aa5878e26f258d5f55f5e1787ad77088f9dfc363bd45998ae296465659', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2143, '2025-03-11 16:54:00', 'SALE1229', 1413, 'poline muthoni', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5b52424984979aa8bb634b216b51e51a509157e79edda35cb1dc9dd10c718319', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2144, '2025-03-11 09:27:00', 'SALE1230', 1414, 'james chomba', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '32824130fb4a0eccd6e0961f895117ec5f6415e4a753fe442f25447391873172', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2145, '2025-03-01 21:02:00', 'SALE1231', 1415, 'joseph murimi', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-13 10:48:24', 5, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f1a873a1631e3cf648537ea515c71bda0c817774e83dff15c27278dadb4f36b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2146, '2025-03-12 10:48:00', 'SALE1232', 1416, 'mary mother', 3, 'Sagana Plantraisers', 1, '', '', '36000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 45, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'baff10c1aa570fe799de64194a64b8efa8dc0bb97414e16a6d49758b61a5027e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2147, '2025-03-12 10:51:00', 'SALE1233', 1300, 'allan mwangi', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c05fe7d2596a01bdde6f2487fa8d286c6bfff358a540dfde61214f1ef38e92d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2148, '2025-03-12 10:51:00', 'SALE1234', 1115, 'anthony matere', 3, 'Sagana Plantraisers', 1, '', '', '114000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '114000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 60, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'efb81852d09b94d17a1702188dae3b14e2b387510960b7fb3adddbdf86d638c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2149, '2025-03-12 11:05:00', 'SALE1235', 1417, 'Lawrence chomba', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 15, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e6b2ae004256ac445eae4252d5d35c581e06ffa8cf3ce73e25eced5e5eb1e1bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2150, '2025-03-12 11:07:00', 'SALE1236', 1418, 'simon njaama', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 8, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '29d0708ff04ac4ab427cd9a44d3ba3b171d71060d67efe37c7eefae81518d732', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2151, '2025-03-03 11:31:00', 'SALE1237', 1419, 'Joseph nyamu', 3, 'Sagana Plantraisers', 1, '', '', '11050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11050.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-03-14 11:35:59', 17, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f7497452f5c48f378ac50ffe3aca66f9fbbc4e50fb4f311801d33b971413353c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2152, '2025-03-05 11:35:00', 'SALE1238', 1358, 'julius 0723633626', 3, 'Sagana Plantraisers', 1, '', '', '3575.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3575.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ff0d31ae1d728ff7e956b9eb452933c7dc7a97079b12e6fdc9aff80f6959273a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2153, '2025-03-07 11:37:00', 'SALE1239', 1257, 'Gatero', 3, 'Sagana Plantraisers', 1, '', '', '13650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13650.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 21, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ecf8c454c54fb9ce561497ab2c59e55dbe20912c8b18ad5be451618b143e7985', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2154, '2025-03-07 11:37:00', 'SALE1240', 1258, 'Raphael muiruri', 3, 'Sagana Plantraisers', 1, '', '', '3575.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3575.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 6, 0, '950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '80a62c07fd29b3192a3be654c3a4f90491de8e8c21dda5b9ad65ac62f8200db0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2155, '2025-03-13 11:59:00', 'SALE1241', 1420, 'Thomas murage', 3, 'Sagana Plantraisers', 1, '', '', '12350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12350.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 19, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '555e4cffe1d3a36eaa40927130721eacfd5e759a03d7dcdda3661acd9cf04ada', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2156, '2025-03-06 12:14:00', 'SALE1242', 1421, 'Douglas 0723839544', 3, 'Sagana Plantraisers', 1, '', '', '8125.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8125.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 13, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '086c99c17457dea43eff1019e09a004d0308fe37eb48ff12c8f82764e1a832d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2157, '2025-03-07 12:15:00', 'SALE1243', 1422, 'stanley njoronge', 3, 'Sagana Plantraisers', 1, '', '', '3575.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3575.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 6, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f048beb93b673c74842ac204296c161459ad7f8b1691565c71b669ff9b356d22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2158, '2025-03-13 10:34:00', 'SALE1244', 1423, 'dennis kariuki', 3, 'Sagana Plantraisers', 1, '', '', '4750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '3650.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2c61c80fa740fd6a07d4ecf03bea9d1471d736b85958d537a04099c96abce337', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2159, '2025-03-13 10:38:00', 'SALE1245', 1424, 'simon gakugu', 3, 'Sagana Plantraisers', 1, '', '', '4700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 11:51:07', 5, 0, '4700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0d4a9197fec60d51a7f6b3285b9637ac7ec41f1db2391992a51498d7d60a2eab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2160, '2025-03-13 10:41:00', 'SALE1246', 1425, 'benson ndegwa', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '51bd774ef1170a35781600bd0eca4220509af294010e4bcb7d83fb758d9c6ebc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2161, '2025-03-13 10:42:00', 'SALE1247', 1018, 'sarah muriithi', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a06586f91d30e9749481964747134fd150713a6bc00fd142246d531bdbc16e4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2162, '2025-03-13 10:43:00', 'SALE1248', 1414, 'james chomba', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd1455f4f4e5482f1276402ff768952ce61626873e1467f1f213e7d72f7748b7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2163, '2025-03-13 10:01:00', 'SALE1249', 1426, 'peter murage', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'eca566e652efd5de771874037dd1c65899dfb00bfdf8169e2b34fd343b70e99a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2164, '2025-03-13 10:03:00', 'SALE1250', 189, 'jamleck', 3, 'Sagana Plantraisers', 1, '', '', '43700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '43700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 23, 0, '43700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1fdaae3a1f62fc6dce1c3384b34fdebaf56571170dadc66b6f25ca87c443601d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2165, '2025-03-13 10:05:00', 'SALE1251', 1427, 'john  gachie', 3, 'Sagana Plantraisers', 1, '', '', '9000.0000', '0.0000', '1800', '1800.0000', '1800.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 9, 0, '7200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c96236a4390a55ff6e281ac2be5ab906f392cfee6b097c36c9cabcfb2fb35e0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2166, '2025-03-13 10:21:00', 'SALE1252', 1428, 'eunice bundi', 3, 'Sagana Plantraisers', 1, '', '', '251.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '251.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '250.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '88d85d34d1dfb98d497b2ab077ca42f8d229698a73c5d82fb27fe1aa213e8253', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2167, '2025-03-13 10:27:00', 'SALE1253', 809, 'Michael', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6c084671da709f715da1e7392b9f306b459f5a52f9042258a0572762ff22e6c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2168, '2025-03-14 11:00:00', 'SALE1254', 389, 'joseph  Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '30400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30400.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 16, 0, '6000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '84268f1b11be402eed852826d67f333336fa9aa72258b6844c684205729098e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2169, '2025-03-13 11:01:00', 'SALE1255', 1429, 'charles gatimu', 3, 'Sagana Plantraisers', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1da0e4f2b938aeed36e906ab9cccb4fd8ee7cdfcf8e574c085464dd2a2d523a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2170, '2025-03-14 11:03:00', 'SALE1256', 1174, 'Gideon kinyua', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 11:55:14', 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '586b7b96885c377f5872498dfc680ac1ce3023cb0d44ddbcb895e72926ac27a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2171, '2025-03-14 11:04:00', 'SALE1257', 930, 'Jeremiah Maina', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '588c0656f3117af01bd1db326c59579bc5b0eef70a3f6aeef76b6861871beff4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2172, '2025-03-14 11:09:00', 'SALE1258', 1430, 'miriam nyawira', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1fbffc31f5e485498c210b96ef9a0fd3e9af82de88c9044264ae6adbf13f8e49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2174, '2025-03-14 11:14:00', 'SALE1260', 1431, 'rosebelt wawira', 3, 'Sagana Plantraisers', 1, '', '', '42.0000', '0.0000', '2.80', '2.8000', '2.8000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '39.2000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:24:22', 0, 0, '39.2000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'afb7705576afde3d61c4161da8ce0f4f9aee471a1b809d4f8cd1fcdb8aa80143', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2176, '2025-03-14 11:19:00', 'SALE1262', 1432, '0710524254  moses nyamu', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '728e48624d3fadc31bfccd062565819c4d5daed0e7315c3dfae09b768d3b729d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2177, '2025-03-14 11:21:00', 'SALE1263', 1433, 'moffat mureithi', 3, 'Sagana Plantraisers', 1, '', '', '112.0000', '0.0000', '3', '3.0000', '3.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '109.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:23:59', 0, 0, '109.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7102984ce4fa2bbb40548ff50c4a07748dd17894b617983749a9b3e6a0b1d592', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2178, '2025-03-14 11:25:00', 'SALE1264', 1271, 'Mary Mugo', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;to be collected after 45 days&lt;&sol;p&gt;', '', '14101.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14101.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:28:03', 20, 0, '14101.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '02889103d24f360456fa8e6cbb2154dc6c7722366b7a96fc942f2fffb64dc7cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2179, '2025-03-15 11:32:00', 'SALE1265', 1434, 'ceasar  manegene', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4729c9c8f1045f9ef4d67f7d2e59a9bc0b110769d1c6b5f60a5ff30ae2f64312', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2180, '2025-03-15 11:38:00', 'SALE1266', 1435, 'amos gatimu', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b1498d723c6467bfe20c72ee7f577e5e97dce8c4d0f6af95438a85cd71b1d0d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2181, '2025-03-15 11:44:00', 'SALE1267', 1436, 'Ephantus waweru', 3, 'Sagana Plantraisers', 1, '', '', '8000.0000', '0.0000', '2000', '2000.0000', '2000.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '6000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd4d0d8dd3aabdb57ba9da1f77c90a3f4af688639e35621cd2cf046dfa4b49f22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2182, '2025-03-15 11:47:00', 'SALE1268', 1437, 'harrison murimi', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1ae36a7dbf59a351aa12186b0a78c59818cfbc670c2b4dcffec025bb40eab381', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2183, '2025-03-17 11:51:00', 'SALE1269', 1054, 'Ibra', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;paid by millicent&lt;&sol;p&gt;', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-18 11:52:11', 12, 0, '7800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'df557a3d00db54792139bf94d1d09d1526bbeeb012ca326e5d4c665936c975f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2184, '2025-03-17 11:52:00', 'SALE1270', 210, 'Ibra', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;paid by millicent&lt;&sol;p&gt;', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '539388177b7a2898dc7904f8e6bac5ebc42006d17e7771184dcb80aab6deb902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2185, '2025-03-17 12:05:00', 'SALE1271', 1073, 'David Maai', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '76c66b40b349c17bf4b009ef6cf944c85a2e350195af2f0ee6a037d7a27ae7d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2186, '2025-03-17 12:08:00', 'SALE1272', 1212, 'William murimi', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0c9fe33c5e2f9c1679e0903fb8d2ba1eaf28ec9968dc1d8ea915155761c50dd5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2187, '2025-03-17 12:10:00', 'SALE1273', 1438, 'jeremiah nguku', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ec8b0cd9901a1c2136d50ec20fb53edda02a943525153c951125019794a33814', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2188, '2025-03-17 12:19:00', 'SALE1274', 1439, 'Ezekiah irungu', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c08f115c7c94a84098f7df408a21917adb538286919a890c773f4a078e3d0a67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2189, '2025-03-17 13:09:00', 'SALE1275', 1440, 'fredrick njeru', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:43:14', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '50215cc0a75273b2c418c988d4a25bd102da21a36733add57bedbf1325f4c222', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2190, '2025-03-17 13:17:00', 'SALE1276', 857, 'Alex', 3, 'Sagana Plantraisers', 1, '', '', '2850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2850.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2850.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b8baa0f4e48ac08392845df105d6937d2e091994249b10150f2f6fce9447c0f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2191, '2025-03-17 13:19:00', 'SALE1277', 1441, 'joram muriuki', 3, 'Sagana Plantraisers', 1, '', '', '407.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '407.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '392.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '387978c3afc96b8bbc9f81e3c0e88578de3824e234c2f46278e38345d5ab4286', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2192, '2025-03-17 13:24:00', 'SALE1278', 1427, 'john  gachie', 3, 'Sagana Plantraisers', 1, '', '', '7000.0000', '0.0000', '1750', '1750.0000', '1750.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5250.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '5250.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '56a39b0c902660f08ac28b1760b1d4a1fa03913e5c6e20c39a5c2bfac7df4b5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2193, '2025-02-19 13:30:00', 'SALE1279', 964, 'harrison wambugu', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2e3e74268596ab4916c1b60a6808151f238521c9ec84b148a36eefd1a62352d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2194, '2025-03-17 13:32:00', 'SALE1280', 1442, 'douglas kimotho', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e4162163d85744772d444cb52e6351c523e067160a6ced65d864b22dd6f122df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2195, '2025-03-17 13:36:00', 'SALE1281', 245, 'Alfred chomba', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '63860bac0127b7bf191265c5e456bf34c87677029b731144e89fe54e25c7ea1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2196, '2025-03-18 14:19:00', 'SALE1282', 1443, 'peter mathenge', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '5100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'aea6f44485708d02fa91679e91958683c32e051a4aa752f05a640289ab836343', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2197, '2025-03-18 14:20:00', 'SALE1283', 1444, 'alfred murioithi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7646342b81402fe92a8a0351f8314a33a088dac0cc5d7ee5cf1c8467e438b454', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2198, '2025-03-18 14:22:00', 'SALE1284', 1013, 'leonard muthii', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e728e5f33327bfe54fd00e232aa0651a1a83b27e8a147f0eb65ba34fef78a510', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2199, '2025-03-18 14:22:00', 'SALE1285', 859, 'Danson', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-27 12:43:43', 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7deb1c09d8025486fcc5d3ac35b4597ad5d323ea88407749502f60d7fd13e0e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2200, '2025-03-18 14:24:00', 'SALE1286', 1445, 'philip muthii', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '55de6e299deb9b21c12dfcac8637fd9ddb48bf73d983e3173a178b58d26cd5a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2201, '2025-03-18 14:27:00', 'SALE1287', 1446, 'muthoni munene', 3, 'Sagana Plantraisers', 1, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '5200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f3f847c0e3477df985b6cfdb417d097a056ecedab44d906555a0f3f2c9f79a9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2202, '2025-03-18 14:29:00', 'SALE1288', 1447, 'david ndungu', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3d3a0ea58a5bb717b7d4de1806b1e16e44d92d2228961a34933bfc4a800bfe69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2203, '2025-03-18 14:31:00', 'SALE1289', 1448, 'kennedy mutei', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '29de5b60e27e808c11c2f9ac7abbbf4859dd8f35ceb9d72603146613be121884', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2204, '2025-03-18 14:33:00', 'SALE1290', 1449, 'henry karuri', 3, 'Sagana Plantraisers', 1, '', '', '20000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '695f0d538e3c2b274f8308189bbcd8f7676bc5b49cf4d805e39c85b802cd302a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2205, '2025-03-18 14:35:00', 'SALE1291', 857, 'Alex', 3, 'Sagana Plantraisers', 1, '', '', '95.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '95.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 14:36:33', 0, 0, '98.8000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5495dc025f060490095074fb679b20447149443942ab2763083662b346f6c0a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2206, '2025-03-18 14:41:00', 'SALE1292', 1427, 'john  gachie', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '81dee9d2821aae1bba4cfee3593dea3172b200acfe02c65221932dd67297155a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2207, '2025-03-18 14:45:00', 'SALE1293', 304, 'Daniel Muthike', 3, 'Sagana Plantraisers', 1, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd8829b9abe30a4689470289ad12c9be87e870eb18342ad7f708d9073fb03aa1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2208, '2025-03-18 14:47:00', 'SALE1294', 1412, 'rosslyn kiplangatt', 3, 'Sagana Plantraisers', 1, '', '', '395.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '395.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-03-20 14:54:11', 1, 0, '400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c90db1c441b70cbea76573d6c06c72c6834eb707607527ba4ad609ebd901e54c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2209, '2025-02-15 14:57:00', 'SALE1295', 1021, 'Erastus Mburu', 3, 'Sagana Plantraisers', 1, '', '', '13200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '13200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '52f835a2418d20bea895f7b2a6a7c9afe6704b2f863b2e50aadadf62c61f1a42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2210, '2025-02-01 20:22:00', 'SALE1296', 985, 'mrs kariuki', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 12, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '98b25349d0d95ec3fb3cf84c6ab69b08706add8afa8f8103da0ae82de4d40df2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2211, '2025-03-19 13:50:00', 'SALE1297', 1450, 'patrick maina', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 10, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c4771c2d92287008fbe1906302a8546851ddf9dbb53857f5dd1077030609263e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2212, '2025-03-19 13:52:00', 'SALE1298', 1451, 'patrick mwaura', 3, 'Sagana Plantraisers', 1, '', '', '25000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 25, 0, '25000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa03c98bf5be9392c494ee5235436208745bf3ceeaf6303eb21c2446ba9d2d90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2213, '2025-03-19 14:49:00', 'SALE1299', 1452, 'peter mbutu', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 6, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '57253b05475115f6044703a3d8809476dd509ca7e6f2a457b2ada17b01174431', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2214, '2025-03-19 14:53:00', 'SALE1300', 205, 'Msome', 3, 'Sagana Plantraisers', 1, '', '', '142500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '142500.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 75, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd15f94df1c5a7e8585095995b21b4487f445cc607b3fea8263c9067886bd8333', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2215, '2025-03-19 08:49:00', 'SALE1301', 1453, 'simon kibinda', 3, 'Sagana Plantraisers', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd6f53e6ab22f01c14497c1607fa77af63774960add8e769c4ee710deb89a2493', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2216, '2025-03-19 08:51:00', 'SALE1302', 1454, 'pauline mugo', 3, 'Sagana Plantraisers', 1, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '727c0d7d2684566b9b42c701ab3d81dd30660ccd7ce5c08716110c1b077774bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2217, '2025-03-19 08:57:00', 'SALE1303', 1455, 'Jemimah wambui', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f2cdddbce5242b7aa9105111ddb5be9b1ccfa24c4b79f81b5343e885ed0be91c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2218, '2025-03-19 09:02:00', 'SALE1304', 985, 'mrs kariuki', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 4, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '580cb0360cde147ebe26c0038ebafa6dad65b60874309d51859c93b9fbebfd3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2219, '2025-03-20 09:04:00', 'SALE1305', 1456, 'janiiffer njeri', 3, 'Sagana Plantraisers', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b5b20b8a505f7febf6556c7d019f1b89e1daf1538a59d30ab565bf516cb33365', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2220, '2025-03-20 09:08:00', 'SALE1306', 660, 'Joseph maina', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0345d7dd45b1ef49e732357bc6be9c00aeffd9bbc93603eb1699d0c937329618', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2221, '2025-03-20 09:09:00', 'SALE1307', 227, 'Benson warui', 3, 'Sagana Plantraisers', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 40, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5085821fcfa9d4caf8c17aa77c44b42c43684f7b759ddf4aa3d3ffeccc865e7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2222, '2025-03-20 09:09:00', 'SALE1308', 1401, 'charles wabuiya', 3, 'Sagana Plantraisers', 1, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9fea14a0048fdb65841ea9ea2127542f86726a6e1d265d5b8265996fcb33711c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2223, '2025-03-20 09:10:00', 'SALE1309', 1457, 'peter gacuji', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'efc571044a5853a1b6e9069f287c3b04db9a230ed5052edc3d4cc52f7f743fb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2224, '2025-03-20 09:16:00', 'SALE1310', 1458, 'Damaris wairimu', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3741c01ade4d0ac4f5f4532469609743181ec37508f5f08c756d6cc73ada943a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2225, '2025-03-20 09:23:00', 'SALE1311', 1459, 'rodah wanjiku', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '340787ac7b5f5fa9f0626289d2d183eeb23394bae7c26652f8b884e7f9b3ae10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2226, '2025-03-20 09:25:00', 'SALE1312', 1460, 'eliud muriithi', 3, 'Sagana Plantraisers', 1, '', '', '26600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 14, 0, '15000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '153b426c8cccb9318197d6889834ab63b5e7690e083008bb85a1dca06a835553', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2227, '2025-03-20 09:27:00', 'SALE1313', 259, 'Eliud Irungu', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7a252c84fce2f8e62931005fcf624ccf99e5ebc77477f5fd27a584c851b3c4da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2228, '2025-03-20 09:29:00', 'SALE1314', 1461, 'musa njoka', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '82ad8c5d7e64acc1cd4b497fc9df2426387d57dff938364bfb2da662363a8fe1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2229, '2025-03-20 09:32:00', 'SALE1315', 1462, 'david maina', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3ed20fbab532704db552f4bc4e57d5abcadac763df150b612782eb3aed24a53d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2230, '2025-03-21 09:36:00', 'SALE1316', 738, 'David Gichira', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd7f870a8e6a3facfc4469c0fd80440eea4fc25f5f3a28819002e875f98640eca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2231, '2025-03-21 09:37:00', 'SALE1317', 1463, 'samuel ndungu', 3, 'Sagana Plantraisers', 1, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '7800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '76a7fdb05ca0fff4f4b6bc5779447c5072e95b91dfa94c5d7de62d69c41eabcd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2232, '2025-03-21 09:41:00', 'SALE1318', 719, 'Benjamin Komu', 3, 'Sagana Plantraisers', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6500.0000', 'pending', 'due', 0, NULL, 13, 13, '2025-04-01 11:00:13', 5, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c27d67358c32703e1006e603c7bb1f92a0e052d340e6e3b5b6b7143d6c330e6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2233, '2025-03-21 09:44:00', 'SALE1319', 1464, 'preston macharia', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 10, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '21017fb9ccedb8437936707419ca755efe156dbe33c6a92e72b39e278d897203', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2234, '2025-03-21 09:45:00', 'SALE1320', 1465, 'samuel ndeithi', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7da65dfa5c57cda13d0f516fd5672d87a8bf6d28ddfb4609ac36539f52576c63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2235, '2025-03-19 09:47:00', 'SALE1321', 1466, 'peter ngubu', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '46d9f3119291a06636cb5f2372872c34cec28e5951616fda3d8741c2f76a8283', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2236, '2025-03-21 09:51:00', 'SALE1322', 1467, 'john maina', 3, 'Sagana Plantraisers', 1, '', '', '1326.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1326.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'dff11575548b2d13c081d3fde78ac26ddab206a41d733cf1478fff3336883a9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2237, '2025-03-21 09:59:00', 'SALE1323', 1468, 'Evans magondu', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '163ba70a432be226665761ba62d9f6f3d2e1f2ba4b5f64610e780af4f0c045f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2238, '2025-03-21 10:02:00', 'SALE1324', 1469, 'evans murimi', 3, 'Sagana Plantraisers', 1, '&lt;p&gt;paid by mannaseh murage&lt;&sol;p&gt;', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '713f7ca21feb69c4f748415c5082664339c893abaaf6aea7d297799c696232b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2239, '2025-03-22 10:29:00', 'SALE1325', 1470, 'james gichira', 3, 'Sagana Plantraisers', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7d1ae0d8b43c3c9d2556e28e2f69319bba56017fa8c5accea921c449603ac2f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2240, '2025-03-22 10:31:00', 'SALE1326', 1471, 'gatimu', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 11, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6f728269d2767337ed907ce0fbc183a2cf92d2b2be3c04afcca708e75f773680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2241, '2025-03-22 11:02:00', 'SALE1327', 1472, 'wa mwas', 3, 'Sagana Plantraisers', 1, '', '', '15000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c36f58d861af6d2d7189063a9ba123722db106a3baeb855c0f5f9ae54ebeb06a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2242, '2025-03-21 11:04:00', 'SALE1328', 1473, 'grace wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c87307e23534a7cb7e3fac0684038ec5697005e31da4751ee8eb6e24f29771e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2243, '2025-03-22 11:09:00', 'SALE1329', 1474, 'Ephantus kinyua', 3, 'Sagana Plantraisers', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '05f1b134451da992d1c0096f42d4f2d166f3b9b468d2814cbe0f9e136a561735', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2244, '2025-03-24 11:12:00', 'SALE1330', 1475, 'edith wanjiku', 3, 'Sagana Plantraisers', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a9c0bf3d70cf8e2f3795255e4e7ce6c4f15f90285f92fce8bb1bfcd4a2fce00b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2245, '2025-03-24 11:15:00', 'SALE1331', 1476, 'purity warui', 3, 'Sagana Plantraisers', 1, '', '', '16600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 10, 0, '8000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '88e0f84f5c34fdf744dcb6e8cdf089838e2d0e01ea831be0bb0fd545758e1d91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2246, '2025-03-24 11:17:00', 'SALE1332', 1240, 'Jacob Nyaga', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3ddd417b978977693d839eefe421517d0fe810f5b5a2baf0438f8d56abd46c20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2247, '2025-03-24 11:19:00', 'SALE1333', 1477, 'paul', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 12, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1513b025a8264ef708f50e9d2e225457cb5fb657ee93e06e6aedf57ef5b60a8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2248, '2025-03-24 11:51:00', 'SALE1334', 1076, 'patrick muriiiiimi', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3b64b543a8631716aa95933f7a18b7cbca1484b9cca6b47ce92cffe5ade5b0b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2249, '2025-03-24 12:05:00', 'SALE1335', 1478, 'simon murimi', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '745ac468881b21d5db1cf634a7116a4ff4208b6ed9254425ade949073c2c9ddb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2250, '2025-03-24 12:14:00', 'SALE1336', 341, 'Joel  Kihohia', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 3, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f243895cd4bb54d3f9b7790b4da537e39bb04c6233d4759d4cad2e5c52af2748', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2251, '2025-03-25 12:15:00', 'SALE1337', 1479, 'Jackson githiji', 3, 'Sagana Plantraisers', 1, '', '', '65500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 34, 0, '16800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c7b42c23730421dca77f1cba2976766f68faf5a62c7e045a3eb9d713ef8424a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2252, '2025-03-24 12:20:00', 'SALE1338', 1480, 'johnson mwathi', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f22af0c335eb9b423e4113640bed98bea50ff08347754b41c7f0bf22a03e2ea2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2253, '2025-03-24 12:22:00', 'SALE1339', 1481, 'christopher mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '50bd74517e34bba48dba444ae2cc72153a2d2e9d9487444278cb3f9f1f298347', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2254, '2025-03-24 12:24:00', 'SALE1340', 1482, 'hezekiah  maiona', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa65aa699cebfaf87560bb10ba59e42381a66d4231f707f9eecd1524ffbe6eda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2255, '2025-03-24 12:29:00', 'SALE1341', 1483, 'kinyua', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c36343693c92b104353bb6b13d3430c9d887c8a0bb343fb8f499f9fa1d07b28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2256, '2025-03-25 12:30:00', 'SALE1342', 627, 'patrick muthike', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '7000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6f051f880f3581d1771ac6e17b63c714826420b89cbe9980091b639243475807', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2257, '2025-03-25 12:32:00', 'SALE1343', 1484, 'charles munene', 3, 'Sagana Plantraisers', 1, '', '', '13000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 13, 0, '13000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f3f17358392c723e74896fc3d62676d72131a0d2d97f6ea78a6d7c4c886aa8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2258, '2025-03-25 12:33:00', 'SALE1344', 1485, 'elias kibuti', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bb0a250f90df206157d38e7c6db13a0034e5171699217ff75b233edb08905803', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2259, '2025-03-25 12:35:00', 'SALE1345', 1486, 'gideon muthike', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '359386c94a27fcecefd5ded95dbbefd09dc62e7cb3bcd07c63df4cdfbda0d471', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2260, '2025-03-25 12:37:00', 'SALE1346', 1487, '0705944606', 3, 'Sagana Plantraisers', 1, '', '', '30000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30000.0000', 'pending', 'paid', 0, NULL, 13, 13, '2025-03-29 08:38:20', 30, 0, '30000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e03f7404e58561cedab4c094f1a4db809a6328a2bc5b082c86a122c3e9b3530d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2261, '2025-03-14 12:39:00', 'SALE1347', 180, 'Daniel shikuku', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 30, 0, '58500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f21fe6a3c4cecf67ebb0d4108b5f8a78b3491a02e7fa6fcd4d721d3a18cd6c43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2263, '2025-03-27 15:41:00', 'SALE1349', 395, 'Geoffrey Murage', 3, 'Sagana Plantraisers', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34200.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 18, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a5b78a3008b276dec97b764ee84665f234a34e4c58230fd2f94812bfe20c28e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2265, '2025-03-26 08:38:00', 'SALE1351', 1466, 'peter ngubu', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2a5e6ff8781e45275554c44b2ec09a1e1a3b6318adba8f4a3bbebb82056657d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2266, '2025-03-26 08:39:00', 'SALE1352', 1232, 'David mugo', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b4fe8fa850126c917850bc7ec8bd0e020fda7349c9e557b963a6e7de0ce26248', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2267, '2025-03-26 08:40:00', 'SALE1353', 578, 'Daniel Wachira', 3, 'Sagana Plantraisers', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 15, 0, '26000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd275dcb657fbb858d896ecd450c3a4c5e0ddbe402211b3050d48c60d1dd5c4a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2268, '2025-03-26 08:41:00', 'SALE1354', 395, 'Geoffrey Murage', 3, 'Sagana Plantraisers', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34200.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 18, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ef39c979d45478688136b953e8a9d5947f3b66c74069dd2b286a2f6050fb56a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2269, '2025-03-26 08:41:00', 'SALE1355', 189, 'jamleck', 3, 'Sagana Plantraisers', 1, '', '', '45600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45600.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 24, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4f70672d521bc33c7b30afc93b1af3f76feab2ced643fda3f280c296dc7d71e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2270, '2025-03-28 08:43:00', 'SALE1356', 1488, 'purity wangeci', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7ec94965220cf715fecb4400bf6bdd13426da0954fdae8e2b86252def5135295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2271, '2025-03-28 09:04:00', 'SALE1357', 1489, 'edward theuri', 3, 'Sagana Plantraisers', 1, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b19902426aed7ee3e4eb87be0a781326ae7a6aa622033ed2f9cb5264233cbfa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2272, '2025-03-28 10:55:00', 'SALE1358', 1490, 'Josphat 0753093555', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '891c57aa2b8d0c380a5d8b0ce85ab3ad771ff34232c40c7ad77798f07e21b623', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2273, '2025-03-28 10:59:00', 'SALE1359', 1491, 'charles bundi', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '2900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '82ea0f399b26ae2857943986774e3f038f161a6b5133e15e3bda6de95cfd6d0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2274, '2025-03-29 11:02:00', 'SALE1360', 1492, 'fredrick muthii', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 3, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ab521e57041a3a353ad3520658274ffc97e505f0d124d43608d8c65141eed06f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2275, '2025-03-29 11:03:00', 'SALE1361', 992, 'michael gitwe', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '385e2d205bda69ba74b377c8aeceb288bd34dadfc179645e9fc85cbd30e37f72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2276, '2025-03-29 11:04:00', 'SALE1362', 1493, 'john0702899212', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '94951c8aa2cfbd74daf5aebead2c58ced87b0ce327d81661ddcc022fb94b87a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2277, '2025-03-29 11:06:00', 'SALE1363', 1494, 'Damaris muriuki', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'af139b791c2a9f65c40293d2bb669cd03c6b37069aadaef3c6c58c2d2413d016', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2278, '2025-03-28 11:27:00', 'SALE1364', 1495, 'timothy mutisya', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4c96844b59401d8f1a64aa6abba3d11e26a6d7f0570d3c2ae6f85579bc75fdf6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2279, '2025-03-28 11:29:00', 'SALE1365', 1118, 'Julius Kinyua', 3, 'Sagana Plantraisers', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '89d2ae43f25209a72275ea21f5545094b433bba0dc5767e40d16eb80c8c1eda1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2280, '2025-03-28 11:35:00', 'SALE1366', 1128, 'Jane  Catherine', 3, 'Sagana Plantraisers', 1, '', '', '21600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 27, 0, '21600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8107b5528d44ebdd9956270b4493941e18118fab651e35baaa26944ed29e26e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2281, '2025-03-27 11:38:00', 'SALE1367', 1053, 'Jamleck munene', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '069f9dd0315acf190f0dd8ce7947c71aeab4d260eaf83413f603eb4c526392ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2282, '2025-03-19 13:13:00', 'SALE1368', 1434, 'ceasar  manegene', 3, 'Sagana Plantraisers', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c55f0f1ce76ec7fac0ac5e63b902d8ce705d5d7291a4b33bf5d96f2d0969724d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2283, '2025-03-19 13:26:00', 'SALE1369', 1496, 'grace wanjiku', 3, 'Sagana Plantraisers', 1, '', '', '326.0000', '0.0000', '1.70', '1.7000', '1.7000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '324.3000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '325.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '21569d1bec945d7f74328b99f1ba9ae0cef859ebfac35c3b7b93296bd1525822', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2284, '2025-03-19 13:35:00', 'SALE1370', 1431, 'rosebelt wawira', 3, 'Sagana Plantraisers', 1, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '40.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'baa37bd05feb1b1be093ecfab0923f4af01328edba5185c4b56252f5c759114e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2285, '2025-03-19 13:40:00', 'SALE1371', 1497, 'michael kariuki', 3, 'Sagana Plantraisers', 1, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7c1b6990b089754979a2c31f0913fa5c3823e3bc84c541d501995dcc2064baa8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2286, '2025-03-19 13:44:00', 'SALE1372', 1498, 'william munyi', 3, 'Sagana Plantraisers', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '8000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3562200c6c61cc4ad769e56a9da803caed551a4355be88c28464a94c6fc21016', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2287, '2025-03-19 13:46:00', 'SALE1373', 1499, 'moese wacira', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'pending', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b6772995118ca80a85d90bc447050942fd18391346fc25c9c00c1de87f6dd9d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2288, '2025-03-19 13:49:00', 'SALE1374', 1500, 'David njeru', 3, 'Sagana Plantraisers', 1, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ae4bb65a61ae92acb3b6936a4772015b728d8ccdd2acd9c24e7015cd19d69764', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2289, '2025-03-19 13:51:00', 'SALE1375', 1501, 'Benard muraguri', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3726a0431195049944601f9f61adab536b2b5f4d1a3b143ca55f0af32d4989da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2290, '2025-03-19 13:52:00', 'SALE1376', 1502, 'pricilar mwambi', 3, 'Sagana Plantraisers', 1, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '36496c8a0f80b30617c1c9ff7117dae3f513a0c6879357b813caa2a7288de008', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2291, '2025-03-19 13:54:00', 'SALE1377', 1503, 'jason nyaga', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '09339bed0cbaff24599b1d6a3eb82177398b04436e3b3ec26b9b96a5d1d5fa1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2292, '2025-03-20 14:00:00', 'SALE1378', 1365, 'jenario gikunju', 3, 'Sagana Plantraisers', 1, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '60992c51680e373df69cbe63f217dbd3139c41000be17726b0d1f6c984f01869', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2293, '2025-03-20 14:00:00', 'SALE1379', 1230, 'Muthike kinara', 3, 'Sagana Plantraisers', 1, '', '', '25200.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '25000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cc28f5ae4e0f7deb61326f2013385ec49c182da07f81d7c791f4b050ffdd6cc5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2294, '2025-03-20 14:05:00', 'SALE1380', 1504, 'esther miano', 3, 'Sagana Plantraisers', 1, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9d94c80cae809666aab0a262a8aeb51ecc207d82edb7dc5f0efc7f8e0dd5e5a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2295, '2025-03-20 14:07:00', 'SALE1381', 940, 'david riua', 3, 'Sagana Plantraisers', 1, '', '', '47500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 25, 0, '48000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ee727a535a87b6df88095a8d5562b1b53094d802c573316085d5e3f2d0a2dd77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2296, '2025-03-20 14:14:00', 'SALE1382', 1505, 'agnes wacera', 3, 'Sagana Plantraisers', 1, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '3200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '5d5e4e546d6117ef5ccbbf90a4c6b6d18f2e368fc73e64aa153f4c350f574c58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2297, '2025-03-20 14:15:00', 'SALE1383', 1506, 'zachary karimi', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd61987cc2b8e5ea2471b6361e8785f12ec21446a43f8ea83e05e46d72d85e28c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2298, '0000-00-00 00:00:00', 'SALE1384', 1461, 'musa njoka', 3, 'Sagana Plantraisers', 1, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b8906917f70ef8f0bddd21c862c9d222d0d9d6013efc492788223cc99ab55514', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2299, '2025-03-19 14:23:00', 'SALE1385', 1507, 'Elizabeth warukira', 3, 'Sagana Plantraisers', 1, '', '', '5600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '5600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e1ae3fdb75def277f960d2899793f98396e0835c87febef85df805fbd46ac8dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2300, '2025-03-21 14:34:00', 'SALE1386', 1508, 'luke murimi', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4eca1a2c7452405c76e80b0cb262e0c335f183efacc74908b4eb133b3574e938', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2301, '2024-12-19 14:35:00', 'SALE1387', 1509, 'erastus waruhiu', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 120, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a054bbac234247e3e4cac2171a66254dd159dbf614d34c10cb2230fc133a3522', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2302, '2025-03-21 14:46:00', 'SALE1388', 985, 'mrs kariuki', 3, 'Sagana Plantraisers', 1, '', '', '175.0000', '0.0000', '5', '5.0000', '5.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '170.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f18470c7d9b7ae8642a7cdd341fb0a7a13d8a9ec5c29499d6479664a4b1b9f1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2303, '2025-03-21 14:55:00', 'SALE1389', 1510, 'jane wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '210.0000', '0.0000', '6.50', '6.5000', '6.5000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '203.5000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f7ede249e8bc06cd007b8ed4fdbee18f5b5c83462669b6090c97594659bd9514', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2304, '2025-03-21 15:05:00', 'SALE1390', 1511, 'Esther kangangi', 3, 'Sagana Plantraisers', 1, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '425082054715e78268c61d441bece1e600eced22f536103ce352281ac9d54ee7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2305, '2025-02-20 15:09:00', 'SALE1391', 1418, 'simon njaama', 3, 'Sagana Plantraisers', 1, '', '', '22900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 13, 0, '22900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '76e5ac859b7c8c410c62c458c9322cde26f0f084eba992d4fdab4ba652adf488', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2306, '2025-03-22 15:35:00', 'SALE1392', 1512, 'stephen shikuku', 3, 'Sagana Plantraisers', 1, '', '', '98.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '98.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '99.9600', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '649b4cc5e15f04875dabaf2988d63815ecdde6843670cf9b87214d91afcf769d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2307, '2025-03-22 15:38:00', 'SALE1393', 1513, 'nancy wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '196.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '196.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '199.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '273ff97f2acd91f1fa524d92a689d7cf088ddb79679872c60c4cfaa470f5d34c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2308, '2025-03-20 15:58:00', 'SALE1394', 1514, 'Euditah kabaya', 3, 'Sagana Plantraisers', 1, '', '', '98.0000', '0.0000', '.80', '0.8000', '0.8000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '97.2000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '969dbc9709f53947e582ceb9b1642ab2d12c339f70c36208283ab9fea04eb2a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2309, '2025-03-19 16:02:00', 'SALE1395', 1515, 'morrison gitau', 3, 'Sagana Plantraisers', 1, '', '', '15600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '15600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd979f4cdbfed8751fda9e37d91f996745530adb64968bd27bcb460e295200c38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2310, '2025-03-24 08:23:00', 'SALE1396', 1516, 'moses kaguta', 3, 'Sagana Plantraisers', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cf365deeaf98f2d654c16547ebf6342afa14b1a5f1c09786137038ac993dfec1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2311, '2025-03-24 08:44:00', 'SALE1397', 1517, 'samwel mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fbdc777d2bdfa536a36269f44c84402331a6f3247d76ef598745f50aa1d7e75e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2312, '2025-03-24 08:49:00', 'SALE1398', 1518, 'john njiru', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd0544a687841f5e6013427586f99c30943ce8480334b13f5801d8869fc4e79c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2313, '2025-03-24 08:53:00', 'SALE1399', 1519, 'joseph kahutu', 3, 'Sagana Plantraisers', 1, '', '', '89.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '89.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '89.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1c91f0807b4423661f491d56ee1456e4f3c10375abb6e037fc258a905d894fd4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2314, '2025-02-22 08:57:00', 'SALE1400', 1319, 'Amos  mwai', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 09:00:33', 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0dd69707c7f17ffe4c8c5951db02919e2fcfa86773a347656618a26cf886a9d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2315, '2025-03-24 09:02:00', 'SALE1401', 1520, 'Beatrice wambui', 3, 'Sagana Plantraisers', 1, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd8c074fccd25ba485cb1f1fed5bee265442845c07a5186ad5c1050d1b4b955de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2316, '2025-03-25 09:05:00', 'SALE1402', 1521, 'titus gatitu', 3, 'Sagana Plantraisers', 1, '', '', '154.0000', '0.0000', '4', '4.0000', '4.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 0, 0, '150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '84552b058c49c0ca121a76f12f0208d6aceff9db6aabdb1f665db3cc86aec047', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2317, '2025-03-25 09:11:00', 'SALE1403', 1522, 'susan wanjohi', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '3900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6d1c83f92936b0282f9651ba510c63d37c4dcc72e4a7a8320d2148b18739c14a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2318, '2025-03-25 09:15:00', 'SALE1404', 1319, 'Amos  mwai', 3, 'Sagana Plantraisers', 1, '', '', '1007.0000', '0.0000', '7', '7.0000', '7.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8860eb3b2c2b3a70bfe9f97bf1449fbae7e2ac54d61b1b5d0e76e555011b79d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2319, '2025-03-25 09:17:00', 'SALE1405', 1439, 'Ezekiah irungu', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '855dd2f774adbfb61380a7157c5ae7d325b8db4d976ef00efdfc0c9c2317f186', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2320, '2025-03-25 09:20:00', 'SALE1406', 1523, 'patrick kangiri', 3, 'Sagana Plantraisers', 1, '', '', '16000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 16, 0, '17000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c838f5b1f7338739b83a288325d93e7da73dbdaa78532cf8991ed023c15a265f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2321, '2025-03-25 09:22:00', 'SALE1407', 1524, 'michael warui', 3, 'Sagana Plantraisers', 1, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 0, '1300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9012be5b62e75a7c76d5ea969cadd06ce5eeaa7d0efa731ecc850832e5e5cd40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2322, '2025-03-25 09:36:00', 'SALE1408', 1525, 'Joanina wathimu', 3, 'Sagana Plantraisers', 1, '', '', '1160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1160.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1160.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6592d8ffc3e74580a1a55a316a7ee194f8355a32d9bbb0b4e325c2ae7428dd47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2323, '2025-03-25 09:58:00', 'SALE1409', 1526, 'lydiah wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '7800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6e7d95c68013a2f660e6b91e269382a13fbf53b594185fa5140ccf0998e2df01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2324, '2025-03-07 10:19:00', 'SALE1410', 1073, 'David Maai', 3, 'Sagana Plantraisers', 1, '', '', '41800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41800.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 10:36:14', 22, 0, '41800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8edb6e8414e6b56181eec398f6e5f6efffcc14f26c01a10a9966efcbd7c8acc9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2325, '2025-03-25 10:38:00', 'SALE1411', 1527, 'Jane wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '202.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '202.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 0, 0, '200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e1798c1ea45b99babf4fe8e0faf0eb034a30f672b91c7d61f6ef1eaad9617995', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2326, '2025-02-28 10:46:00', 'SALE1412', 1528, 'jane kibuti', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 10:49:20', 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3bcc58b98c32539f9c6513ad9c6642df0fc1eb18d4c4d5aac11ff1f028406131', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2327, '2025-02-18 10:54:00', 'SALE1413', 1529, 'Nancy muchira', 3, 'Sagana Plantraisers', 1, '', '', '12350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12350.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-01 10:55:56', 19, 0, '12950.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ab510c5c3e1e559d6de2d695275c9381dc799c23bac221d84cb368b4a01a61ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2328, '2025-03-25 11:06:00', 'SALE1414', 916, 'Benjamin  Koomu', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 20, 0, '30000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f1f6755a165dcdd6c148fab052156172caf5996ccb3b16f22b2f31d9894af32b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2329, '2025-03-25 11:10:00', 'SALE1415', 1530, 'milka wanjiru', 3, 'Sagana Plantraisers', 1, '', '', '6802.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6802.0000', 'completed', 'due', 0, NULL, 13, NULL, NULL, 9, 0, '6799.9000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0bd00e514c3fba4cbdba67aedafe8a2671106f563a1330c11f81cd2b463644ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2330, '2025-03-25 11:17:00', 'SALE1416', 1019, 'james waithaka', 3, 'Sagana Plantraisers', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '81b7240388db4d29919d2cc45f6b95309a4d7129b1c0a09b8c4c025a25ce80be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2331, '2025-03-26 11:28:00', 'SALE1417', 985, 'mrs kariuki', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'pending', 0, NULL, 13, NULL, NULL, 9, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '22cd482f6d24b13f2ddce0543b352f92bf2e040565f44683e3491b55e07cc8cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2332, '2025-03-26 11:29:00', 'SALE1418', 1531, 'dancan kariuki', 3, 'Sagana Plantraisers', 1, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'afe2fc048028e0dd35c001d167d730e95c818c6eda2f15b397020e0244392c17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2333, '2025-03-26 11:34:00', 'SALE1419', 1532, 'rahab wawira', 3, 'Sagana Plantraisers', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '1500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e662e7343128a0f59c4a0d2ca17722579cfc3ac9ba09a70562a31d7aafc0625b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2334, '0000-00-00 00:00:00', 'SALE1420', 1534, 'Daniel boro', 3, 'Sagana Plantraisers', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '4000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c919b87fed3405881746e7752b5bb898754b094cba4731c5bafa01286d0bdb9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2335, '2025-01-20 11:37:00', 'SALE1421', 1058, 'Harrison Njiru', 3, 'Sagana Plantraisers', 1, '', '', '6650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6650.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '6650.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e8c36f6f4b51acb54fd8cd5884600ec945459a07397845d20c1f9fef05706f81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2336, '2025-01-20 11:54:00', 'SALE1422', 1060, 'Ndambiri Ngoroi', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '3800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a3cf47210880c218e4fb25fa515fce29f135245a523d034687278dc91b97f8f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2337, '2025-01-20 11:56:00', 'SALE1423', 1061, 'Daniel Njiraini', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '19500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '79cec0915ee364c4bd06a54a9d9043c8596ded2b6c3ddc134ef9f665fe78513f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2338, '2025-01-20 11:58:00', 'SALE1424', 1062, 'Joseph Muriuki', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 12:00:54', 3, 0, '5800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8c2052731fb37fbd88b82dcb1ee0b3badd5c1485792c1db834c9c7d9bcc95475', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2339, '2025-03-20 12:01:00', 'SALE1425', 1064, 'Samuel Gichohi', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 0, '7600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0170a22cdc86c2ae4fe3a641b86947fa6f66ad5997ffef191037db53dca82827', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2340, '2025-01-20 12:06:00', 'SALE1426', 1065, 'Josiah kagai', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fccd2b0b9a87e87c05be5c83d23fecd71bfd572a79b4e87b7e3d0d5b57724f47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2341, '2025-02-15 12:09:00', 'SALE1427', 1053, 'Jamleck munene', 3, 'Sagana Plantraisers', 1, '', '', '36100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36100.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 19, 0, '36100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '194ee88486002aaf02e241071e762681ed13b70b680e2f3c3826e156ed641bd4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2342, '2025-01-21 12:16:00', 'SALE1428', 1104, 'Jackson maina', 3, 'Sagana Plantraisers', 1, '', '', '133000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 70, 0, '133000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ff56267aff96bc51af9e0d6a2dfb373057533c38de1c96addd72d1f3dec5aa16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2343, '2025-02-04 14:29:00', 'SALE1429', 1192, 'martin kariuki', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cc4f26a44bbbbad631f9ea5ac33956446f30152d241c31554bbbeab948de7ec4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2344, '2025-02-04 14:34:00', 'SALE1430', 1193, 'Moses jeff', 3, 'Sagana Plantraisers', 1, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '4200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '60eb097d7bb8aafd6c68e751c6ac393d72fdb8712a44d86e1fd99efcae5630e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2345, '2025-02-04 14:40:00', 'SALE1431', 1194, 'John ngari', 3, 'Sagana Plantraisers', 1, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '7800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e0e1c8dc0608802bb49a409da4afbd3a69e36522c5f0295da45d3372f28d3fac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2346, '2025-02-05 14:47:00', 'SALE1432', 1197, 'Jeremian Mubena', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '10300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c694c12595bf7406b290f1ec77612cc95367c3be16dacd1aa39916cbc43d314f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2348, '2025-02-05 14:52:00', 'SALE1434', 1200, 'Alice wairiuko', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6d75383033fbb7e74db8807666b7970045beec60e069d43ed668a5fbb8278c73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2349, '2025-02-05 14:56:00', 'SALE1435', 1202, 'kennedy njogu', 3, 'Sagana Plantraisers', 1, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2cc978ce4528482b5b6c6da3f8fbc9a41abea1311d83f2bc2a80f85e8cb79487', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2350, '2025-02-05 14:58:00', 'SALE1436', 1204, 'Ephraim Mwangi', 3, 'Sagana Plantraisers', 1, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-03 15:00:04', 2, 0, '2600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4cf254f54a1aa7f728c5df846320d2358027bcae0b2e194ba621aa1fcddabba1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2351, '2025-02-05 15:06:00', 'SALE1437', 1205, 'Peter muchiri', 3, 'Sagana Plantraisers', 1, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '60339d1e8c45e375f46b8f46330cf920b4d35a92a9119e8fd33f4d4e1d14f6f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2352, '2025-02-06 15:08:00', 'SALE1438', 396, 'Charles Wamugunda', 3, 'Sagana Plantraisers', 1, '', '', '9100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9100.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '9100.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '98b79be4ce786f66d53558a3f5a56b2ddd3e4f8cb1715a890d60798e17c34c01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2354, '2025-02-03 15:14:00', 'SALE1440', 1165, 'arthur munene', 3, 'Sagana Plantraisers', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '4500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '7e8550c2568a5bff6eb66938a7e08f0883168f73aad7b82adae6d305dcef6622', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2355, '2025-03-04 15:22:00', 'SALE1441', 1186, 'isaac mungai', 3, 'Sagana Plantraisers', 1, '', '', '150000.0000', '0.0000', '15000', '15000.0000', '15000.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '135000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 150, 0, '145000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '809287827b35ded4973d4aba11a5f2135094dc0579a9f62e8a60a26c89abc516', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2356, '2025-02-03 15:35:00', 'SALE1442', 1110, 'michael Thumaita', 3, 'Sagana Plantraisers', 1, '', '', '47500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 25, 0, '47500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c264f0346c05535b09307b41ec9dd15189e1de8c0a3b2c6705519c1fcd66838b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2357, '2025-02-03 15:40:00', 'SALE1443', 1167, 'samuel mutugi', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ae3234906018f61fcf8f378fad4b16a7fa14bcb64252e16066261c5009479b99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2358, '2025-02-03 15:41:00', 'SALE1444', 896, 'samuel maringa', 3, 'Sagana Plantraisers', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 2, 0, '2000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'e0e62ae1afe95c3d51733b9e07730e645cb99f5bbb4dd19256bfa148581e477f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2359, '2025-01-22 16:14:00', 'SALE1445', 1091, 'james dedan', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 10, 0, '19000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9e32ad36e474d2dac626a79e08c5525421e4106779d468ddaf3abe259ace7d94', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2360, '2025-01-22 16:16:00', 'SALE1446', 1092, 'purity kinyua', 3, 'Sagana Plantraisers', 1, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 3, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cc1dc15cfd19129d2652afc50d671a2ae41da17bd0163fa36e30231b78832585', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2361, '2025-01-22 16:18:00', 'SALE1447', 1093, 'samuel gichuhi', 3, 'Sagana Plantraisers', 1, '', '', '38000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38000.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 20, 0, '38000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f4b360dfe3cd398ef2aa0b70d020e5982c46759902853507356eb5fde5ead7c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2362, '2025-01-23 08:57:00', 'SALE1448', 987, 'brian', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '15293810a5beab2d1bbe8b8d8064c9c9c444d7ff1d18d295293df7ea672cf194', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2363, '2025-01-23 08:59:00', 'SALE1449', 983, 'patrick muchiri', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cb19f2b3e238ece75c3d7dcbe892c2b4ad29f1a5dffdb3c109c09e0e95930fc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2364, '2025-01-23 09:00:00', 'SALE1450', 332, 'John Njoka', 3, 'Sagana Plantraisers', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22800.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 12, 0, '22800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'cf9a5d9ca67c4d9ab5ca98160d116902e9fcbfa86674369cc3918a6fb9dea234', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2365, '2025-01-23 09:04:00', 'SALE1451', 754, 'John Muriuki', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 0, '9500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '39dfec0518d652692ca4c0401bab36437e6839c33db79db463eea8a04e34b838', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2366, '2025-01-24 09:05:00', 'SALE1452', 1319, 'Amos  mwai', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 09:07:23', 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '3fa9e57aba2bc1778afd68cadecd3c098161de49e5f63424c5910c1828d2097b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2367, '2025-01-24 09:08:00', 'SALE1453', 386, 'Joseph Macharia', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '06460f9b3747370a0813cefd5bcfcf3062a077e253b540ed50cce846cf3a4dcf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2368, '2025-01-27 09:20:00', 'SALE1454', 1099, 'John Mboi', 3, 'Sagana Plantraisers', 1, '', '', '13300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13300.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 0, '13300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '93a1ac4f076e4feef8dd4fc1730466c6df2d1c800f59951ada6c72b88352dca1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2369, '2025-02-17 09:22:00', 'SALE1455', 308, 'Charles Gatimu', 3, 'Sagana Plantraisers', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11400.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 0, '11400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c202616b447b4af5f00edc0c24d91210337e3a2f085c682012526a31aa717b28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2370, '2025-01-27 09:23:00', 'SALE1456', 427, 'Charles Macharia', 3, 'Sagana Plantraisers', 1, '', '', '26600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 14, 0, '5700.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c05f51f1513fa22b6ef3ce6121c07df8ece3ff0a1ee72606851aae029ff5ae62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2372, '2025-01-28 09:40:00', 'SALE1458', 904, 'david mugo', 3, 'Sagana Plantraisers', 1, '', '', '45600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45600.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 24, 0, '46400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '08538dc210eb05f05c5883950a40165ad9e12ad1e8b97aff260f5d514ba3d51b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2374, '2025-01-30 10:13:00', 'SALE1460', 245, 'Alfred chomba', 3, 'Sagana Plantraisers', 1, '', '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 9, 0, '17600.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bac93c20d399eb9d67c40d6c273636564e106435e72f14f3ab7a815213fd13f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2375, '2025-01-31 10:16:00', 'SALE1461', 470, 'John Mutugi', 3, 'Sagana Plantraisers', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20900.0000', 'completed', 'paid', 0, NULL, 13, 13, '2025-04-04 10:18:15', 11, 0, '20900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '27849aca806b90cd5dec23f3e299cfac3a70c68560e3bbd115364f55c984604a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2376, '2025-01-31 10:19:00', 'SALE1462', 1156, 'William Gichoya', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 8, 0, '15200.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '26d5a4bd1f3892fe9b46acbb63cdc347653d8d7675c97a55ac5c21a44229d0d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2377, '2025-03-31 10:47:00', 'SALE1463', 461, 'Isaac  Mungai', 3, 'Sagana Plantraisers', 1, '', '', '13000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 20, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '577295019a0eb3902132d88674883f69b8dff939a42cebfa34a83c72ffaf13c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2378, '2025-03-31 10:48:00', 'SALE1464', 1535, 'peter irungu', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '2500.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f75f0a8c0b71cd779bf2f34617a69fd3057a1bf6a4936ade146f97bef119e44a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2379, '2025-03-31 10:52:00', 'SALE1465', 1536, 'harrison mwangi', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '55b46e2223eec23748e79f4e7c1fd35e42e3c8826981ca613b3713d5e55731c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2380, '2025-04-01 11:11:00', 'SALE1466', 1537, 'anthony muthee', 3, 'Sagana Plantraisers', 1, '', '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 5, 0, '1900.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '25f6d24b372fadb68399ccbf23d182e1fefeedf602ba112a50eb95e2ceedb017', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2381, '2025-04-01 11:13:00', 'SALE1467', 1538, 'MORRIS mugwe', 3, 'Sagana Plantraisers', 1, '', '', '57000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57000.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 30, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '8484106bfa75905addab0a5093273419ac6626bef2056dca936f19e4eb3a11e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2382, '2025-04-01 11:16:00', 'SALE1468', 593, 'Elija Kiura', 3, 'Sagana Plantraisers', 1, '', '', '47500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47500.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 25, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9bfe5f35130e08d619154fb61c5cfb9d61f1b8188789be473ad6f3fdf2f5633d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2383, '2025-04-02 11:17:00', 'SALE1469', 1030, 'henry', 3, 'Sagana Plantraisers', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19000.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 10, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '84701f70e24fce42f308fd36a41ef2cf8170578763926e9c0c7db0f53b5abb7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2384, '2025-04-02 11:18:00', 'SALE1470', 1191, 'James githiji', 3, 'Sagana Plantraisers', 1, '', '', '66500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '66500.0000', 'pending', 'pending', 0, NULL, 13, NULL, NULL, 35, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd427fdbb1656079b6261ee593ef8d0ef1b55929ea21216546c6f9dcba1953cbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2385, '2025-04-03 11:27:00', 'SALE1471', 1539, 'peter  muriuki', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '5000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fd346ad0a221b9d410f1d9563f6cc62d107139f4e5aa48b39daa88e4b194b299', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2386, '2025-04-03 11:29:00', 'SALE1472', 1457, 'peter gacuji', 3, 'Sagana Plantraisers', 1, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 4, 0, '3000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '028bf1322c800f9ecebe73564adcc06ed8c1e91feacce3c9d82daa6b55be0f56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2387, '2025-04-03 11:29:00', 'SALE1473', 1540, 'venasia beth', 3, 'Sagana Plantraisers', 1, '', '', '15200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15200.0000', 'pending', 'due', 0, NULL, 13, NULL, NULL, 8, 0, '10000.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4e1a544ba7a576ecccf5811fe2644d03df12e7f91665e77b9d342f970d57dfc8', NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sessions
#

DROP TABLE IF EXISTS `sma_sessions`;

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

INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17da46c3e6e3f3ea39006ef85bda13928a4604b5', '154.159.32.214', 1743764941, '__ci_last_regenerate|i:1743764941;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";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 ('1b402d5f1ffdb125a6fec55e1063783b9fa5d6a8', '154.159.32.214', 1743777429, '__ci_last_regenerate|i:1743777404;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"Lk2wicXBUbC3K9aTMpAx\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29683adca3937fae3750817574eb44870be48655', '154.159.32.214', 1743766639, '__ci_last_regenerate|i:1743766639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aeffc367b3b886211050c9583931384fee5b4d2', '154.159.32.214', 1743774726, '__ci_last_regenerate|i:1743774726;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30af2e3eb7f7b0f6d02195a5fea0811aac021b36', '154.159.32.214', 1743775044, '__ci_last_regenerate|i:1743775044;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33263783bc6c39918da92b11859e4dbb4c0e252f', '15.235.186.96', 1743770711, '__ci_last_regenerate|i:1743770710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3490e9b11088eb76ce79ce116d6c86eb4bf49068', '15.235.186.96', 1743770894, '__ci_last_regenerate|i:1743770894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af3283e6903cfc932ca623dd1505462d4972d41', '15.235.186.96', 1743770881, '__ci_last_regenerate|i:1743770881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3a9bc84e1b5286cf79d794be8f1749303fde37', '154.159.32.214', 1743772159, '__ci_last_regenerate|i:1743772159;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdf3b66eaa55dcb0f565d8cf550044e32859ef1', '15.235.186.96', 1743770339, '__ci_last_regenerate|i:1743770253;requested_page|s:15:\"brand/home-made\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d32a9dbf60f9192344181bbe617d13517d0f81', '154.159.32.214', 1743769367, '__ci_last_regenerate|i:1743769367;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"IK70q1PlfgyRNcvXmHke\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45efbace54620b9f2546d0eb7f67148565352558', '154.159.32.214', 1743766532, '__ci_last_regenerate|i:1743766532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526c9163c631f645868914e3a80daa7ad3cf5431', '154.159.32.214', 1743771346, '__ci_last_regenerate|i:1743771346;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"jcFHKC6fmi3OyI7GTaX0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551f874b404b5ef77fa9f9ab70f3c01e9e947a46', '154.159.32.214', 1743771772, '__ci_last_regenerate|i:1743771772;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"Lk2wicXBUbC3K9aTMpAx\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dfc361bc315a569c0234d4ca67189d2def5edb', '154.159.32.214', 1743767816, '__ci_last_regenerate|i:1743767816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588929b18259bcde646270499f4ae32d9cdc7b24', '154.159.32.214', 1743773306, '__ci_last_regenerate|i:1743773306;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b73dcbb6a899218d219a70bfb6eed374d6f5e1c', '154.159.32.214', 1743772979, '__ci_last_regenerate|i:1743772979;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8353a0eb9d28d0a666ca2d0037e0e66d48612c', '154.159.32.214', 1743771595, '__ci_last_regenerate|i:1743771595;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca9a95e6c4e6687bbf2c502ca4fc69b649ab91b', '154.159.32.214', 1743769854, '__ci_last_regenerate|i:1743769854;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"naztwNZIVq4hFMTOiA1D\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f70e64cdd4be61709c061f4cce1b616365c46a4', '15.235.186.96', 1743770403, '__ci_last_regenerate|i:1743770403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606e4155b0581b6f5af020b75a960151b3a1150b', '154.159.32.214', 1743768572, '__ci_last_regenerate|i:1743768572;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787538c5a5f5b3dae8b13121c30bbbfc97e1203f', '15.235.186.96', 1743770879, '__ci_last_regenerate|i:1743770879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8678512b3da3414c984be14e7cc830a82587dc03', '15.235.186.96', 1743770895, '__ci_last_regenerate|i:1743770895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c51aa4ffb182f786197258b5c12d57563e26022', '154.159.32.214', 1743775270, '__ci_last_regenerate|i:1743775044;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ccc4aa4e5d7bb9eb2cd0b38c74b665aca7e0d24', '154.159.32.214', 1743768252, '__ci_last_regenerate|i:1743768252;identity|s:18:\"kimems01@gmail.com\";username|s:6:\"kimems\";email|s:18:\"kimems01@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1743766572\";last_ip|s:14:\"154.159.32.214\";avatar|s:36:\"a557d510090c1cd90048dde610fc6ca6.png\";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 ('907ba070a8d1cd21f05fe8fcd5ae6db2e0ffef2e', '15.235.186.96', 1743770735, '__ci_last_regenerate|i:1743770731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a598bffe42e96455ae304a62d432a081b88d79d', '154.159.32.214', 1743769514, '__ci_last_regenerate|i:1743769514;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"IfXwQ5iUrRTubBA2CF0m\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0067882b739779c712832009fe5fe1b39085f43', '154.159.32.214', 1743768586, '__ci_last_regenerate|i:1743768586;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ff5eea4aca4a02078b1aa54047913cb00249b9', '154.159.32.214', 1743769007, '__ci_last_regenerate|i:1743769007;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a928d18dc3bddcd2a93b29c5a51c904c2e64dc90', '15.235.186.96', 1743770396, '__ci_last_regenerate|i:1743770396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa307bd4690794a179c737f793559d28744e2435', '154.159.32.214', 1743770441, '__ci_last_regenerate|i:1743770441;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"jcFHKC6fmi3OyI7GTaX0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7da4366ec5acd597fb7638b82538658818a501', '154.159.32.214', 1743767158, '__ci_last_regenerate|i:1743767158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12b1e238eff0d5affafdd3b911ef2f729faba07', '154.159.32.214', 1743770751, '__ci_last_regenerate|i:1743770751;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"jcFHKC6fmi3OyI7GTaX0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2929a11e1afc9722ae1107b50a6be6435b169fb', '154.159.32.214', 1743774393, '__ci_last_regenerate|i:1743774393;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aaec72bb94fc405e3b9014c8b8cfac517d4ac2', '154.159.32.214', 1743769759, '__ci_last_regenerate|i:1743769759;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"IK70q1PlfgyRNcvXmHke\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2488fa1d52284c3784ca8b24e5d756209d408f4', '154.159.32.214', 1743766581, '__ci_last_regenerate|i:1743766532;identity|s:18:\"kimems01@gmail.com\";username|s:6:\"kimems\";email|s:18:\"kimems01@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1739861792\";last_ip|s:9:\"127.0.0.1\";avatar|s:36:\"a557d510090c1cd90048dde610fc6ca6.png\";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 ('c2eb85f5dec4351e717e519c206a8507ced208d4', '196.96.236.134', 1743765154, '__ci_last_regenerate|i:1743765154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c327c7fcdef592073043f659f885b9d3008b3a2e', '15.235.186.96', 1743770880, '__ci_last_regenerate|i:1743770880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d643d0f0671db60d03a2a7775666d67e67b4d69e', '154.159.32.214', 1743770708, '__ci_last_regenerate|i:1743770708;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f0b4cec97b768f201d733b18491acf29a59341', '196.96.236.134', 1743765145, '__ci_last_regenerate|i:1743765145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04efee7cc18e4ba2fa36dd8785d0d7b50f57f42', '154.159.32.214', 1743777242, '__ci_last_regenerate|i:1743777170;requested_page|s:13:\"admin/reports\";identity|s:18:\"kimems01@gmail.com\";username|s:6:\"kimems\";email|s:18:\"kimems01@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1743767850\";last_ip|s:14:\"154.159.32.214\";avatar|s:36:\"a557d510090c1cd90048dde610fc6ca6.png\";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 ('e539878e0d668c78d0b15a87089b49f49980358b', '15.235.186.96', 1743770996, '__ci_last_regenerate|i:1743770996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea46a18379e71145dffc0a445a6144cf83e46f2c', '154.159.32.214', 1743773742, '__ci_last_regenerate|i:1743773742;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2134b3a39c102ce115798ce8159fa7a164a5ef', '154.159.32.214', 1743774069, '__ci_last_regenerate|i:1743774069;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2631949bfc7bd2b6e1c11e2b2d29bbd9a647f53', '154.159.32.214', 1743772676, '__ci_last_regenerate|i:1743772676;identity|s:6:\"phinah\";username|s:6:\"phinah\";email|s:30:\"saraphinanyambura342@gmail.com\";user_id|s:2:\"13\";old_last_login|s:10:\"1743746069\";last_ip|s:9:\"127.0.0.1\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"2\";warehouse_id|s:1:\"1\";view_right|s:1:\"1\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"tB4bew1Ard9cs8MqVkWU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c208f32df69a10e65b3ebe27b22758911ea7ff', '15.235.186.96', 1743770711, '__ci_last_regenerate|i:1743770711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd613cd7cc1a8f17162186a7ee6a1cc78167cab8', '154.159.32.214', 1743777404, '__ci_last_regenerate|i:1743777404;identity|s:9:\"sagana001\";username|s:9:\"sagana001\";email|s:21:\"artpac.tech@gmail.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1743768252\";last_ip|N;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:1743768385;user_csrf|s:20:\"Lk2wicXBUbC3K9aTMpAx\";');


#
# 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,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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`) VALUES (1, 'Logo51.png', 'Logo52.png', 'Sagana PlantRaisers', 'english', 1, 2, 'Kes', 0, 25, '3.4.47', 1, 4, 'SALE', 'QUOTE', 'PO', 'TR', 'DO', '', 'SR', 'PR', '', 0, 'default', 1, 1, 1, 1, 0, 1, 1, 1, 0, 'Africa/Nairobi', 800, 800, 150, 150, 0, 0, 0, 0, NULL, 'smtp', '/usr/sbin/sendmail', 'smtp.gmail.com', 'livecodesolutionsltd@gmail.com', 'DeadCode2030@', '587', 'ssl', NULL, 1, 'artpac.tech@gmail.com', 0, 4, 1, 0, 3, 0, 0, 0, 2, 2, '.', ',', 0, 3, 'nullmaster@babiato.co', 'Nullmaster01', 0, NULL, NULL, NULL, NULL, 0, 0, 1, 0, '', 0, '-', 0, 1, 1, 'POP', 90, '', 0, 1, 'AN', 'dompdf', 1, 'weight', 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.47',
  `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=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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, 'Tech-Firm Knits', 'Tech-Firm Knits Online sales', 1, 3, '', '', '', '', 'We accept PayPal or you can pay with your credit/debit cards.', 'Please click the link below to follow us on social media.', 'http://facebook.com/feastersbar', 'http://twitter.com/feastersbar', '', '', '0723759494', 'kimems01@gmail.com', 'We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies.', '', '[{\"image\":\"19d75966bae634225fad38ab848d743a.jpg\",\"link\":\"http:\\/\\/ci.dev\\/sma\\/shop\\/products\",\"caption\":\"\"},{\"image\":\"049c1dcf651171726b2e8621529de1ce.jpg\",\"link\":\"\",\"caption\":\"\"},{\"image\":\"80f518343d5d8a66d5db6e43aa556370.jpg\",\"link\":\"\",\"caption\":\"\"},{\"image\":\"24144e13a45389170ab9b81c3524b291.jpg\",\"link\":\"\",\"caption\":\"\"},{\"image\":\"484191627458ee94e8f0b2b60b2e5dba.jpg\",\"link\":\"\",\"caption\":\"\"}]', 0, '', 'envato_username', '3.4.47', 'Tech-Firm_Logo3.png', '', 0, 1, 'Embroidery and Knits', 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=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

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=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

#
# TABLE STRUCTURE FOR: sma_stock_counts
#

DROP TABLE IF EXISTS `sma_stock_counts`;

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

INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (1, '2021-11-17 00:20:00', '234', 1, 'full', '133f21bd861ebdedee65e3e9d6cca531.csv', NULL, '', '', '', '', NULL, 2, 2, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (2, '2022-05-02 14:39:00', '', 1, 'full', '8207367227af7a2c145ba5e01c7d7c8d.csv', NULL, '', '', '', '', NULL, 3, 5, NULL, NULL, NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (3, '2022-05-02 14:40:00', '20220502', 1, 'full', '7b1e809bef77e7dd094fee876b159612.csv', NULL, '', '', '', '', NULL, 3, 5, NULL, NULL, NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (4, '2022-05-03 16:15:00', '', 1, 'full', 'd8a04352cf6209a987633b98b2518084.csv', NULL, '', '', '', '', NULL, 1, 1, NULL, NULL, NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (5, '2022-05-05 15:11:00', '', 1, 'full', '2919edbb598d46588ffc95aa423848d4.csv', NULL, '', '', '', '', NULL, 39, 361, NULL, NULL, NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (6, '2022-05-10 17:17:00', '', 1, 'full', '40c05f33779f9189a2c1e2f745401d86.csv', NULL, '', '', '', '', NULL, 38, 483, NULL, NULL, NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (7, '2022-05-16 00:47:00', '', 1, 'full', '5c716e30ae812c13e987d413dfdefb22.csv', NULL, '', '', '', '', NULL, 42, 553, NULL, NULL, NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (8, '2024-12-21 09:22:00', '', 1, 'full', '1cb9e49081d74f1d5b636be3e467942f.csv', NULL, '', '', '', '', NULL, 4, 4, NULL, NULL, NULL, 13, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (9, '2024-12-23 13:24:00', '', 1, 'full', '50513bff53bfaec900e9cd2f0c3fc149.csv', NULL, '', '', '', '', NULL, 10, 10, NULL, NULL, NULL, 13, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_bills
#

DROP TABLE IF EXISTS `sma_suspended_bills`;

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

INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (1, '2021-11-16 23:45:13', 1, 'Walk-in Customer', 7, '', 1, '1260.0000', 3, 1, 1, 'peter', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (5, '2022-05-02 15:09:03', 1, 'Walk-in Customer', 3, '', 1, '1450.0000', 3, 1, 6, 'Mercy', '0.0000', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_items
#

DROP TABLE IF EXISTS `sma_suspended_items`;

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

INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, 1, 2, 'PilsnerLager500ML', 'Pilsner Lager 500 ML', '180.0000', '180.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '180.0000', '', 5, 'standard', '180.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (20, 5, 7, '04566066', 'plain sweater size 30', '530.0000', '530.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '530.0000', '', 0, 'standard', '530.0000', 4, 'Pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (21, 5, 6, '67569947', 'plain sweater size 24', '460.0000', '460.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '920.0000', '', NULL, 'standard', '460.0000', 4, '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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (1, 'No Tax', 'NT', '0.0000', '2');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (2, 'VAT @16%', 'VAT16', '16.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (3, 'GST @6%', 'GST', '6.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (4, 'VAT @20%', 'VT20', '20.0000', '1');


#
# TABLE STRUCTURE FOR: sma_transfer_items
#

DROP TABLE IF EXISTS `sma_transfer_items`;

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

#
# TABLE STRUCTURE FOR: sma_transfers
#

DROP TABLE IF EXISTS `sma_transfers`;

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

#
# TABLE STRUCTURE FOR: sma_units
#

DROP TABLE IF EXISTS `sma_units`;

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

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (4, 'Pc', 'Pieces', 5, '/', NULL, '400');
INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (5, 'Try', 'Tray', NULL, NULL, NULL, '400');
INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (6, 'g', 'Grams', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_user_logins
#

DROP TABLE IF EXISTS `sma_user_logins`;

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

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1, 1, NULL, '127.0.0.1', 'owner@tecdiary.com', '2021-11-16 22:40:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (2, 2, NULL, '127.0.0.1', 'jane', '2021-11-17 00:08:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (3, 1, NULL, '127.0.0.1', 'owner@tecdiary.com', '2021-11-17 00:18:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (4, 1, NULL, '127.0.0.1', 'owner@tecdiary.com', '2021-11-17 00:31:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (5, 3, NULL, '127.0.0.1', 'kimems01@gmail.com', '2021-11-17 00:33:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (6, 3, NULL, '::1', 'kimems01@gmail.com', '2021-11-17 01:36:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (7, 2, NULL, '::1', 'jane', '2021-11-17 01:37:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (8, 3, NULL, '::1', 'kimems01@gmail.com', '2021-11-17 01:45:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (9, 4, NULL, '::1', 'peter', '2021-11-17 01:50:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (10, 3, NULL, '::1', 'kimems01@gmail.com', '2021-11-17 01:53:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (11, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-01 13:11:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (12, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-01 15:06:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (13, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 01:26:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (14, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 01:41:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (15, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 01:44:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (16, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 01:59:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (17, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 02:05:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (18, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 02:06:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (19, 3, NULL, '154.159.252.6', 'kimems01@gmail.com', '2022-05-02 02:07:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (20, 5, NULL, '154.159.252.6', 'Charles', '2022-05-02 02:08:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (21, 5, NULL, '41.191.104.95', 'Charles', '2022-05-02 07:49:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (22, 3, NULL, '105.163.2.239', 'kimems01@gmail.com', '2022-05-02 08:12:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (23, 3, NULL, '154.159.252.168', 'kimems01@gmail.com', '2022-05-02 14:09:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (24, 3, NULL, '154.159.252.168', 'kimems01@gmail.com', '2022-05-02 14:11:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (25, 6, NULL, '154.159.252.168', 'wanjiru', '2022-05-02 14:16:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (26, 3, NULL, '154.159.252.168', 'kimems01@gmail.com', '2022-05-02 14:22:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (27, 6, NULL, '154.159.252.168', 'wanjiru', '2022-05-02 14:23:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (28, 5, NULL, '41.191.104.254', 'Charles', '2022-05-02 14:38:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (29, 7, NULL, '154.159.252.168', 'christine', '2022-05-02 15:17:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (30, 6, NULL, '154.159.252.168', 'wanjiru', '2022-05-02 15:18:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (31, 3, NULL, '105.160.31.183', 'kimems01@gmail.com', '2022-05-02 16:23:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (32, 6, NULL, '41.90.216.73', 'Wanjiru ', '2022-05-02 16:25:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (33, 5, NULL, '41.191.107.49', 'Charles', '2022-05-03 00:28:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (34, 6, NULL, '41.60.232.81', 'wanjiru', '2022-05-03 12:47:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (35, 3, NULL, '102.7.145.55', 'kimems01@gmail.com', '2022-05-04 07:45:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (36, 6, NULL, '41.60.238.127', 'wanjiru', '2022-05-04 10:24:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (37, 3, NULL, '105.160.12.2', 'kimems01@gmail.com', '2022-05-04 11:18:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (38, 3, NULL, '105.160.12.2', 'kimems01@gmail.com', '2022-05-04 13:47:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (39, 7, NULL, '41.60.239.159', 'christine', '2022-05-04 18:33:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (40, 6, NULL, '41.60.239.159', 'wanjiru', '2022-05-04 18:50:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (41, 5, NULL, '41.191.107.44', 'Charles', '2022-05-05 04:52:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (42, 3, NULL, '154.155.226.106', 'kimems01@gmail.com', '2022-05-05 07:56:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (43, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 09:46:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (44, 5, NULL, '41.191.104.83', 'Charles', '2022-05-05 10:15:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (45, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 13:49:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (46, 7, NULL, '41.60.237.200', 'christine', '2022-05-05 15:52:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (47, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 15:57:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (48, 7, NULL, '41.60.237.200', 'christine', '2022-05-05 16:02:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (49, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 16:17:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (50, 7, NULL, '41.60.237.200', 'christine', '2022-05-05 16:20:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (51, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 16:28:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (52, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-05 16:37:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (53, 5, NULL, '41.191.104.41', 'Charles', '2022-05-05 17:21:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (54, 8, NULL, '105.160.69.151', 'Kelvin', '2022-05-05 19:24:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (55, 3, NULL, '154.152.142.83', 'kimems01@gmail.com', '2022-05-06 11:08:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (56, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-06 11:47:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (57, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-06 16:06:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (58, 6, NULL, '41.60.237.200', 'wanjiru', '2022-05-06 18:31:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (59, 5, NULL, '41.191.105.88', 'Charles', '2022-05-06 21:43:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (60, 8, NULL, '80.240.201.83', 'Kelvin', '2022-05-06 22:37:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (61, 8, NULL, '80.240.201.83', 'Kelvin', '2022-05-06 22:39:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (62, 5, NULL, '41.191.105.92', 'Charles', '2022-05-07 13:49:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (63, 6, NULL, '41.60.235.40', 'wanjiru', '2022-05-07 16:01:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (64, 6, NULL, '41.60.235.40', 'wanjiru', '2022-05-07 18:50:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (65, 6, NULL, '41.60.235.40', 'wanjiru', '2022-05-07 19:40:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (66, 5, NULL, '41.191.105.93', 'Charles', '2022-05-07 23:33:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (67, 5, NULL, '41.191.105.93', 'Charles', '2022-05-08 14:08:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (68, 8, NULL, '41.60.237.195', 'Kelvin', '2022-05-08 23:28:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (69, 6, NULL, '41.60.237.195', 'wanjiru', '2022-05-09 11:00:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (70, 8, NULL, '41.60.237.195', 'Kelvin', '2022-05-09 20:20:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (71, 8, NULL, '105.163.40.83', 'Kelvin', '2022-05-09 22:27:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (72, 6, NULL, '41.60.237.195', 'wanjiru', '2022-05-10 11:15:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (73, 5, NULL, '41.191.104.241', 'Charles', '2022-05-10 15:47:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (74, 8, NULL, '105.160.92.103', 'Kelvin', '2022-05-10 16:01:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (75, 5, NULL, '41.191.104.241', 'Charles', '2022-05-10 16:11:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (76, 8, NULL, '41.60.237.195', 'Kelvin', '2022-05-10 16:19:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (77, 8, NULL, '41.60.237.195', 'Kelvin', '2022-05-10 19:46:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (78, 5, NULL, '41.191.105.235', 'Charles', '2022-05-10 21:27:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (79, 5, NULL, '41.191.104.92', 'Charles', '2022-05-11 04:57:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (80, 5, NULL, '41.191.107.138', 'Charles', '2022-05-11 13:41:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (81, 6, NULL, '41.60.237.59', 'wanjiru', '2022-05-11 15:16:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (82, 5, NULL, '41.191.104.46', 'Charles', '2022-05-12 15:25:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (83, 6, NULL, '41.60.237.59', 'wanjiru', '2022-05-12 16:57:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (84, 6, NULL, '41.60.237.59', 'wanjiru', '2022-05-12 17:11:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (85, 7, NULL, '41.60.237.59', 'christine', '2022-05-12 17:47:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (86, 6, NULL, '41.60.237.59', 'wanjiru', '2022-05-12 18:22:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (87, 7, NULL, '41.60.237.59', 'christine', '2022-05-12 18:39:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (88, 7, NULL, '41.60.237.59', 'christine', '2022-05-13 12:16:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (89, 7, NULL, '41.60.237.59', 'christine', '2022-05-13 16:01:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (90, 7, NULL, '41.60.237.59', 'christine', '2022-05-13 16:55:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (91, 5, NULL, '41.191.107.198', 'Charles', '2022-05-13 20:20:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (92, 7, NULL, '41.60.237.59', 'christine', '2022-05-14 15:00:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (93, 7, NULL, '41.60.237.59', 'christine', '2022-05-14 15:19:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (94, 7, NULL, '41.60.237.59', 'christine', '2022-05-14 18:11:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (95, 7, NULL, '41.60.237.59', 'christine', '2022-05-14 18:19:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (96, 6, NULL, '41.60.237.59', 'wanjiru', '2022-05-14 18:34:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (97, 7, NULL, '41.60.237.59', 'christine ', '2022-05-14 18:45:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (98, 5, NULL, '41.191.105.95', 'Charles', '2022-05-14 23:15:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (99, 5, NULL, '41.191.105.89', 'Charles', '2022-05-15 11:42:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (100, 7, NULL, '41.60.237.59', 'christine', '2022-05-15 16:55:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (101, 7, NULL, '41.60.237.59', 'christine', '2022-05-15 16:59:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (102, 8, NULL, '105.163.48.72', 'Kelvin', '2022-05-15 21:46:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (103, 8, NULL, '41.191.105.93', 'Kelvin', '2022-05-15 22:56:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (104, 5, NULL, '41.191.105.93', 'Charles', '2022-05-15 22:57:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (105, 8, NULL, '41.191.105.93', 'Kelvin', '2022-05-15 22:59:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (106, 5, NULL, '41.191.105.93', 'Charles', '2022-05-15 23:02:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (107, 8, NULL, '41.191.105.93', 'Kelvin', '2022-05-15 23:32:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (108, 5, NULL, '41.191.105.93', 'Charles', '2022-05-15 23:34:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (109, 8, NULL, '41.191.105.93', 'Kelvin', '2022-05-15 23:40:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (110, 5, NULL, '41.191.105.93', 'Charles', '2022-05-15 23:41:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (111, 8, NULL, '105.163.48.72', 'Kelvin', '2022-05-16 07:22:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (112, 8, NULL, '41.60.237.59', 'Kelvin', '2022-05-16 16:01:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (113, 7, NULL, '41.60.237.59', 'christine', '2022-05-16 17:27:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (114, 7, NULL, '41.60.237.59', 'christine', '2022-05-16 18:45:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (115, 7, NULL, '41.60.237.59', 'christine', '2022-05-16 18:47:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (116, 5, NULL, '41.191.107.193', 'Charles', '2022-05-16 20:40:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (117, 8, NULL, '105.163.48.72', 'Kelvin', '2022-05-16 21:24:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (118, 5, NULL, '41.191.105.94', 'Charles', '2022-05-17 11:08:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (119, 7, NULL, '41.60.237.59', 'christine', '2022-05-17 11:49:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (120, 8, NULL, '41.60.237.59', 'Kelvin', '2022-05-17 13:07:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (121, 7, NULL, '41.60.237.59', 'christine', '2022-05-17 13:48:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (122, 5, NULL, '41.191.105.93', 'Charles', '2022-05-17 14:06:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (123, 5, NULL, '41.191.105.93', 'Charles', '2022-05-17 16:44:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (124, 7, NULL, '41.60.237.59', 'christine', '2022-05-17 17:48:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (125, 7, NULL, '41.60.237.59', 'christine', '2022-05-17 18:26:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (126, 8, NULL, '41.60.237.59', 'Kelvin', '2022-05-17 18:50:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (127, 7, NULL, '41.60.237.59', 'christine', '2022-05-17 19:21:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (128, 5, NULL, '41.191.107.225', 'Charles', '2022-05-18 10:24:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (129, 8, NULL, '41.60.237.59', 'Kelvin', '2022-05-18 13:51:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (130, 7, NULL, '41.60.237.59', 'christine', '2022-05-18 14:40:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (131, 5, NULL, '41.191.105.89', 'Charles', '2022-05-18 15:07:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (132, 7, NULL, '41.60.237.59', 'christine', '2022-05-18 17:15:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (133, 5, NULL, '41.191.105.94', 'Charles', '2022-05-18 22:14:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (134, 5, NULL, '41.191.105.88', 'Charles', '2022-05-19 16:55:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (135, 7, NULL, '41.60.237.59', 'christine', '2022-05-20 11:10:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (136, 8, NULL, '41.60.237.59', 'Kelvin', '2022-05-20 12:29:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (137, 3, NULL, '154.155.31.251', 'kimems01@gmail.com', '2022-05-20 13:31:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (138, 5, NULL, '41.191.105.95', 'Charles', '2022-05-21 16:00:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (139, 7, NULL, '41.60.237.59', 'christine', '2022-05-21 17:38:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (140, 8, NULL, '105.163.60.79', 'Kelvin', '2022-05-22 10:55:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (141, 8, NULL, '105.163.60.79', 'Kelvin', '2022-05-22 16:23:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (142, 8, NULL, '41.60.235.76', 'Kelvin', '2022-05-23 14:05:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (143, 7, NULL, '41.60.235.76', 'christine', '2022-05-23 15:03:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (144, 7, NULL, '41.60.235.76', 'christine', '2022-05-23 17:46:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (145, 8, NULL, '41.60.235.76', 'Kelvin', '2022-05-23 18:51:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (146, 8, NULL, '197.156.137.151', 'Kelvin', '2022-05-23 20:42:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (147, 7, NULL, '41.60.235.76', 'christine', '2022-05-24 09:23:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (148, 5, NULL, '41.191.107.225', 'Charles', '2022-05-24 16:38:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (149, 7, NULL, '41.60.235.76', 'christine', '2022-05-24 17:07:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (150, 5, NULL, '41.191.107.225', 'Charles', '2022-05-24 19:27:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (151, 5, NULL, '41.191.107.56', 'Charles', '2022-05-24 20:26:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (152, 8, NULL, '41.60.235.76', 'Kelvin', '2022-05-25 16:18:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (153, 7, NULL, '41.60.235.76', 'christine', '2022-05-25 17:05:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (154, 8, NULL, '41.60.235.76', 'Kelvin', '2022-05-25 17:38:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (155, 7, NULL, '41.60.235.76', 'christine', '2022-05-26 12:47:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (156, 5, NULL, '41.191.104.81', 'Charles', '2022-05-26 15:34:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (157, 8, NULL, '41.90.44.57', 'Kelvin', '2022-05-26 21:40:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (158, 8, NULL, '41.60.235.76', 'Kelvin', '2022-05-27 11:41:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (159, 7, NULL, '41.60.235.76', 'christine', '2022-05-27 17:47:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (160, 5, NULL, '41.191.107.220', 'Charles', '2022-05-27 19:49:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (161, 8, NULL, '41.90.44.57', 'Kelvin', '2022-05-27 22:12:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (162, 3, NULL, '41.80.96.73', 'kimems01@gmail.com', '2022-05-28 09:46:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (163, 3, NULL, '102.1.149.20', 'kimems01@gmail.com', '2022-05-28 10:33:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (164, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-28 10:54:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (165, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-28 10:54:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (166, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-28 11:05:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (167, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-28 14:39:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (168, 3, NULL, '::1', 'kimems01@gmail.com', '2022-05-29 09:21:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (169, 3, NULL, '::1', 'kimems01@gmail.com', '2022-06-29 18:24:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (170, 3, NULL, '::1', 'kimems01@gmail.com', '2022-06-29 19:21:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (171, 3, NULL, '::1', 'kimems01@gmail.com', '2022-07-04 10:55:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (172, 3, NULL, '::1', 'kimems01@gmail.com', '2022-07-05 09:15:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (173, 3, NULL, '::1', 'kimems01@gmail.com', '2022-07-05 11:44:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (174, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 12:48:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (175, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 13:47:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (176, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 13:53:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (177, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:37:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (178, 10, NULL, '::1', 'Lispah', '2022-09-28 15:38:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (179, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:38:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (180, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 15:41:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (181, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:43:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (182, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 15:44:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (183, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:50:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (184, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 15:54:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (185, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:56:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (186, 10, NULL, '::1', 'Lispah', '2022-09-28 15:56:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (187, 3, NULL, '::1', 'kimems01@gmail.com', '2022-09-28 15:57:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (188, 9, NULL, '::1', 'ALLAN', '2022-09-28 15:59:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (189, 9, NULL, '::1', 'ALLAN', '2022-09-29 10:27:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (190, 9, NULL, '::1', 'ALLAN', '2022-09-29 14:23:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (191, 9, NULL, '::1', 'ALLAN', '2022-09-30 09:43:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (192, 9, NULL, '::1', 'ALLAN', '2022-10-01 08:26:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (193, 10, NULL, '::1', 'Lispah', '2022-10-01 09:41:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (194, 3, NULL, '::1', 'kimems01@gmail.com', '2022-10-01 09:41:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (195, 10, NULL, '::1', 'Lispah', '2022-10-01 09:42:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (196, 3, NULL, '::1', 'kimems01@gmail.com', '2022-10-01 09:42:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (197, 3, NULL, '::1', 'kimems01@gmail.com', '2022-10-01 09:48:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (198, 11, NULL, '::1', 'munene', '2022-10-01 10:27:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (199, 11, NULL, '::1', 'munene', '2022-10-01 10:45:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (200, 11, NULL, '::1', 'munene', '2022-10-01 10:46:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (201, 3, NULL, '::1', 'kimems01@gmail.com', '2022-10-01 10:56:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (202, 10, NULL, '::1', 'Lispah', '2022-10-03 10:09:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (203, 9, NULL, '::1', 'ALLAN', '2022-10-03 10:37:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (204, 10, NULL, '::1', 'Lispah', '2022-10-03 10:41:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (205, 9, NULL, '::1', 'ALLAN', '2022-10-03 10:42:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (206, 10, NULL, '::1', 'Lispah', '2022-10-03 10:50:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (207, 3, NULL, '::1', 'kimems01@gmail.com', '2022-10-03 13:34:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (208, 9, NULL, '::1', 'ALLAN', '2022-10-03 13:43:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (209, 10, NULL, '::1', 'Lispah', '2022-10-04 10:14:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (210, 9, NULL, '::1', 'ALLAN', '2022-10-04 10:32:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (211, 10, NULL, '::1', 'Lispah', '2022-10-04 10:52:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (212, 10, NULL, '::1', 'Lispah', '2022-10-05 08:55:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (213, 9, NULL, '::1', 'ALLAN', '2022-10-05 10:30:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (214, 9, NULL, '::1', 'ALLAN', '2022-10-05 14:06:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (215, 10, NULL, '::1', 'Lispah', '2022-10-05 14:07:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (216, 9, NULL, '::1', 'ALLAN', '2022-10-05 14:08:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (217, 9, NULL, '::1', 'ALLAN', '2022-10-06 10:05:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (218, 9, NULL, '::1', 'ALLAN', '2022-10-06 13:07:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (219, 9, NULL, '::1', 'ALLAN', '2022-10-06 17:52:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (220, 9, NULL, '::1', 'ALLAN', '2022-10-07 09:09:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (221, 10, NULL, '::1', 'Lispah', '2022-10-08 08:27:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (222, 9, NULL, '::1', 'ALLAN', '2022-10-08 08:48:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (223, 10, NULL, '::1', 'Lispah', '2022-10-11 08:57:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (224, 9, NULL, '::1', 'ALLAN', '2022-10-11 09:12:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (225, 10, NULL, '::1', 'Lispah', '2022-10-11 14:13:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (226, 9, NULL, '::1', 'ALLAN', '2022-10-11 15:24:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (227, 9, NULL, '::1', 'ALLAN', '2022-10-12 15:40:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (228, 9, NULL, '::1', 'ALLAN', '2022-10-13 09:03:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (229, 9, NULL, '::1', 'ALLAN', '2022-10-13 15:22:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (230, 9, NULL, '::1', 'ALLAN', '2022-10-14 08:45:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (231, 9, NULL, '::1', 'ALLAN', '2022-10-14 13:53:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (232, 10, NULL, '::1', 'Lispah', '2022-10-17 09:23:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (233, 9, NULL, '::1', 'ALLAN', '2022-10-17 09:34:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (234, 9, NULL, '::1', 'ALLAN', '2022-10-17 16:23:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (235, 9, NULL, '::1', 'ALLAN', '2022-10-18 09:13:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (236, 10, NULL, '::1', 'Lispah', '2022-10-18 09:17:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (237, 9, NULL, '::1', 'ALLAN', '2022-10-18 09:18:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (238, 10, NULL, '::1', 'Lispah', '2022-10-18 09:28:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (239, 9, NULL, '::1', 'ALLAN', '2022-10-18 15:33:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (240, 10, NULL, '::1', 'Lispah', '2022-10-18 16:10:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (241, 9, NULL, '::1', 'ALLAN', '2022-10-18 16:10:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (242, 10, NULL, '::1', 'Lispah', '2022-10-21 11:54:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (243, 9, NULL, '::1', 'ALLAN', '2022-10-21 12:07:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (244, 9, NULL, '::1', 'ALLAN', '2022-10-22 12:01:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (245, 10, NULL, '::1', 'Lispah', '2022-10-25 09:31:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (246, 9, NULL, '::1', 'ALLAN', '2022-10-25 11:22:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (247, 9, NULL, '::1', 'ALLAN', '2022-10-25 15:23:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (248, 9, NULL, '::1', 'ALLAN', '2022-10-26 09:04:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (249, 9, NULL, '::1', 'ALLAN', '2022-10-26 15:40:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (250, 9, NULL, '::1', 'ALLAN', '2022-10-27 16:08:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (251, 9, NULL, '::1', 'ALLAN', '2022-10-28 08:50:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (252, 9, NULL, '::1', 'ALLAN', '2022-10-28 12:42:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (253, 10, NULL, '::1', 'Lispah', '2022-10-29 08:37:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (254, 9, NULL, '::1', 'ALLAN', '2022-10-29 09:57:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (255, 9, NULL, '::1', 'ALLAN', '2022-10-31 15:42:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (256, 10, NULL, '::1', 'Lispah', '2022-11-01 12:07:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (257, 9, NULL, '::1', 'ALLAN', '2022-11-01 14:10:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (258, 9, NULL, '::1', 'ALLAN', '2022-11-02 12:33:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (259, 9, NULL, '::1', 'ALLAN', '2022-11-03 10:35:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (260, 9, NULL, '::1', 'ALLAN', '2022-11-04 09:20:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (261, 3, NULL, '::1', 'kimems01@gmail.com', '2022-11-04 15:35:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (262, 9, NULL, '::1', 'ALLAN', '2022-11-04 15:46:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (263, 10, NULL, '::1', 'Lispah', '2022-11-05 11:18:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (264, 9, NULL, '::1', 'ALLAN', '2022-11-05 11:19:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (265, 9, NULL, '::1', 'ALLAN', '2022-11-07 12:02:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (266, 9, NULL, '::1', 'ALLAN', '2022-11-08 10:03:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (267, 9, NULL, '::1', 'ALLAN', '2022-11-09 10:18:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (268, 9, NULL, '::1', 'ALLAN', '2022-11-11 10:24:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (269, 9, NULL, '::1', 'ALLAN', '2022-11-11 15:15:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (270, 9, NULL, '::1', 'ALLAN', '2022-11-12 08:23:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (271, 9, NULL, '::1', 'ALLAN', '2022-11-14 10:15:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (272, 9, NULL, '::1', 'ALLAN', '2022-11-16 08:35:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (273, 9, NULL, '::1', 'ALLAN', '2022-11-16 16:26:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (274, 9, NULL, '::1', 'ALLAN', '2022-11-21 15:30:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (275, 9, NULL, '::1', 'ALLAN', '2022-11-22 09:42:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (276, 9, NULL, '::1', 'ALLAN', '2022-11-22 11:46:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (277, 9, NULL, '::1', 'ALLAN', '2022-11-23 08:33:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (278, 9, NULL, '::1', 'ALLAN', '2022-11-24 14:53:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (279, 9, NULL, '::1', 'ALLAN', '2022-11-25 10:04:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (280, 9, NULL, '::1', 'ALLAN', '2022-11-26 08:55:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (281, 9, NULL, '::1', 'ALLAN', '2022-11-28 12:14:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (282, 9, NULL, '::1', 'ALLAN', '2022-11-29 09:37:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (283, 9, NULL, '::1', 'ALLAN', '2022-11-29 15:20:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (284, 9, NULL, '::1', 'ALLAN', '2022-11-30 12:24:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (285, 9, NULL, '::1', 'ALLAN', '2022-12-01 10:35:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (286, 9, NULL, '::1', 'ALLAN', '2022-12-03 10:22:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (287, 9, NULL, '::1', 'ALLAN', '2022-12-05 10:35:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (288, 9, NULL, '::1', 'ALLAN', '2022-12-05 16:17:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (289, 9, NULL, '::1', 'ALLAN', '2022-12-06 10:36:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (290, 9, NULL, '::1', 'ALLAN', '2022-12-06 16:45:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (291, 9, NULL, '::1', 'ALLAN', '2022-12-07 10:20:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (292, 9, NULL, '::1', 'ALLAN', '2022-12-07 15:24:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (293, 9, NULL, '::1', 'ALLAN', '2022-12-08 10:42:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (294, 9, NULL, '::1', 'ALLAN', '2022-12-08 15:14:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (295, 9, NULL, '::1', 'ALLAN', '2022-12-09 10:10:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (296, 9, NULL, '::1', 'ALLAN', '2022-12-09 15:11:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (297, 9, NULL, '::1', 'ALLAN', '2022-12-10 11:10:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (298, 9, NULL, '::1', 'ALLAN', '2022-12-13 09:36:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (299, 9, NULL, '::1', 'ALLAN', '2022-12-13 15:20:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (300, 9, NULL, '::1', 'ALLAN', '2022-12-14 08:46:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (301, 9, NULL, '::1', 'ALLAN', '2022-12-15 09:36:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (302, 9, NULL, '::1', 'ALLAN', '2022-12-15 15:13:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (303, 9, NULL, '::1', 'ALLAN', '2022-12-17 08:15:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (304, 9, NULL, '::1', 'ALLAN', '2022-12-19 09:58:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (305, 9, NULL, '::1', 'ALLAN', '2022-12-20 09:03:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (306, 9, NULL, '::1', 'ALLAN', '2022-12-20 15:22:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (307, 9, NULL, '::1', 'ALLAN', '2022-12-21 15:04:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (308, 9, NULL, '::1', 'ALLAN', '2022-12-22 12:17:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (309, 9, NULL, '::1', 'ALLAN', '2022-12-22 15:16:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (310, 9, NULL, '::1', 'ALLAN', '2022-12-23 08:58:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (311, 9, NULL, '::1', 'ALLAN', '2022-12-23 12:47:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (312, 9, NULL, '::1', 'ALLAN', '2022-12-24 09:32:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (313, 9, NULL, '::1', 'ALLAN', '2022-12-28 09:41:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (314, 9, NULL, '::1', 'ALLAN', '2022-12-28 14:27:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (315, 9, NULL, '::1', 'ALLAN', '2022-12-29 09:30:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (316, 9, NULL, '::1', 'ALLAN', '2022-12-29 16:53:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (317, 9, NULL, '::1', 'ALLAN', '2022-12-30 11:37:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (318, 9, NULL, '::1', 'ALLAN', '2022-12-31 09:21:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (319, 9, NULL, '::1', 'ALLAN', '2023-01-12 08:50:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (320, 9, NULL, '::1', 'ALLAN', '2023-02-20 11:20:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (321, 9, NULL, '::1', 'ALLAN', '2023-02-28 14:15:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (322, 9, NULL, '::1', 'ALLAN', '2023-03-02 09:59:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (323, 9, NULL, '::1', 'ALLAN', '2023-03-02 16:13:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (324, 9, NULL, '::1', 'ALLAN', '2023-03-03 10:10:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (325, 9, NULL, '::1', 'ALLAN', '2023-03-03 12:38:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (326, 9, NULL, '::1', 'ALLAN', '2023-03-03 16:32:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (327, 9, NULL, '::1', 'ALLAN', '2023-03-04 10:56:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (328, 9, NULL, '::1', 'ALLAN', '2023-03-08 16:02:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (329, 9, NULL, '::1', 'ALLAN', '2023-03-13 11:36:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (330, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 14:47:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (331, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 14:53:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (332, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 14:59:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (333, 13, NULL, '::1', 'phinah', '2024-12-20 15:05:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (334, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 15:06:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (335, 13, NULL, '::1', 'phinah', '2024-12-20 15:53:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (336, 13, NULL, '::1', 'phinah', '2024-12-20 15:58:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (337, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 16:01:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (338, 13, NULL, '::1', 'phinah', '2024-12-20 16:02:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (339, 3, NULL, '::1', 'kimems01@gmail.com', '2024-12-20 16:23:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (340, 13, NULL, '::1', 'phinah', '2024-12-20 17:02:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (341, 13, NULL, '::1', 'phinah', '2024-12-21 08:31:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (342, 13, NULL, '::1', 'phinah', '2024-12-23 10:21:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (343, 13, NULL, '::1', 'phinah', '2024-12-23 17:10:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (344, 13, NULL, '::1', 'phinah', '2024-12-24 08:57:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (345, 13, NULL, '::1', 'phinah', '2024-12-28 10:41:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (346, 13, NULL, '::1', 'phinah', '2024-12-30 09:19:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (347, 13, NULL, '::1', 'phinah', '2024-12-30 13:55:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (348, 13, NULL, '::1', 'phinah', '2024-12-30 13:55:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (349, 13, NULL, '::1', 'phinah', '2024-12-30 17:23:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (350, 13, NULL, '::1', 'phinah', '2024-12-30 20:41:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (351, 13, NULL, '::1', 'phinah', '2024-12-31 09:33:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (352, 13, NULL, '::1', 'phinah', '2024-12-31 12:20:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (353, 13, NULL, '::1', 'phinah', '2024-12-31 16:57:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (354, 13, NULL, '::1', 'phinah', '2025-01-02 13:32:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (355, 13, NULL, '::1', 'phinah', '2025-01-04 08:16:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (356, 13, NULL, '::1', 'phinah', '2025-01-06 14:48:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (357, 13, NULL, '::1', 'phinah', '2025-01-07 14:52:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (358, 13, NULL, '::1', 'phinah', '2025-01-09 08:45:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (359, 13, NULL, '::1', 'phinah', '2025-01-10 08:43:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (360, 13, NULL, '::1', 'phinah', '2025-01-13 11:50:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (361, 13, NULL, '::1', 'phinah', '2025-01-14 08:31:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (362, 13, NULL, '::1', 'phinah', '2025-01-14 13:10:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (363, 13, NULL, '::1', 'phinah', '2025-01-15 10:02:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (364, 13, NULL, '::1', 'phinah', '2025-01-16 16:44:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (365, 13, NULL, '::1', 'phinah', '2025-01-18 08:29:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (366, 13, NULL, '::1', 'phinah', '2025-01-18 14:00:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (367, 13, NULL, '::1', 'phinah', '2025-01-19 21:14:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (368, 13, NULL, '::1', 'phinah', '2025-01-20 08:55:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (369, 13, NULL, '::1', 'phinah', '2025-01-21 09:01:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (370, 13, NULL, '::1', 'phinah', '2025-01-21 13:44:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (371, 13, NULL, '::1', 'phinah', '2025-01-21 16:38:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (372, 13, NULL, '::1', 'phinah', '2025-01-22 15:00:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (373, 13, NULL, '::1', 'phinah', '2025-01-23 09:31:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (374, 13, NULL, '::1', 'phinah', '2025-01-24 09:20:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (375, 13, NULL, '::1', 'phinah', '2025-01-25 07:50:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (376, 13, NULL, '::1', 'phinah', '2025-01-27 11:33:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (377, 13, NULL, '::1', 'phinah', '2025-01-27 14:41:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (378, 13, NULL, '::1', 'phinah', '2025-01-28 10:37:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (379, 13, NULL, '::1', 'phinah', '2025-01-28 14:57:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (380, 13, NULL, '::1', 'phinah', '2025-01-29 11:37:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (381, 13, NULL, '::1', 'phinah', '2025-01-29 15:21:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (382, 13, NULL, '::1', 'phinah', '2025-01-30 09:18:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (383, 13, NULL, '::1', 'phinah', '2025-02-01 08:18:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (384, 13, NULL, '::1', 'phinah', '2025-02-01 15:48:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (385, 13, NULL, '::1', 'phinah', '2025-02-03 14:25:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (386, 13, NULL, '::1', 'phinah', '2025-02-04 08:30:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (387, 13, NULL, '::1', 'phinah', '2025-02-04 15:54:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (388, 13, NULL, '::1', 'phinah', '2025-02-05 12:10:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (389, 13, NULL, '::1', 'phinah', '2025-02-06 08:26:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (390, 13, NULL, '::1', 'phinah', '2025-02-06 14:13:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (391, 13, NULL, '::1', 'phinah', '2025-02-07 09:59:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (392, 13, NULL, '::1', 'phinah', '2025-02-08 11:01:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (393, 13, NULL, '::1', 'phinah', '2025-02-10 10:16:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (394, 13, NULL, '::1', 'phinah', '2025-02-11 08:24:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (395, 13, NULL, '::1', 'phinah', '2025-02-12 09:57:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (396, 13, NULL, '::1', 'phinah', '2025-02-13 08:33:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (397, 13, NULL, '::1', 'phinah', '2025-02-14 11:04:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (398, 13, NULL, '::1', 'phinah', '2025-02-15 09:53:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (399, 13, NULL, '::1', 'phinah', '2025-02-18 08:29:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (400, 3, NULL, '127.0.0.1', 'kimems01@gmail.com', '2025-02-18 09:56:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (401, 13, NULL, '127.0.0.1', 'phinah', '2025-02-18 17:02:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (402, 13, NULL, '127.0.0.1', 'phinah', '2025-02-19 08:24:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (403, 13, NULL, '127.0.0.1', 'phinah', '2025-02-19 12:25:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (404, 13, NULL, '127.0.0.1', 'phinah', '2025-02-20 09:28:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (405, 13, NULL, '127.0.0.1', 'phinah', '2025-02-20 16:36:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (406, 13, NULL, '127.0.0.1', 'phinah', '2025-02-21 16:22:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (407, 13, NULL, '127.0.0.1', 'phinah', '2025-02-22 09:00:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (408, 13, NULL, '127.0.0.1', 'phinah', '2025-02-24 15:45:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (409, 13, NULL, '127.0.0.1', 'phinah', '2025-02-25 14:33:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (410, 13, NULL, '127.0.0.1', 'phinah', '2025-02-26 08:25:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (411, 13, NULL, '127.0.0.1', 'phinah', '2025-02-26 15:23:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (412, 13, NULL, '127.0.0.1', 'phinah', '2025-02-27 14:42:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (413, 13, NULL, '127.0.0.1', 'phinah', '2025-02-28 16:00:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (414, 13, NULL, '127.0.0.1', 'phinah', '2025-03-01 11:59:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (415, 13, NULL, '127.0.0.1', 'phinah', '2025-03-02 12:24:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (416, 13, NULL, '127.0.0.1', 'phinah', '2025-03-03 16:27:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (417, 13, NULL, '127.0.0.1', 'phinah', '2025-03-04 08:16:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (418, 13, NULL, '127.0.0.1', 'phinah', '2025-03-04 16:10:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (419, 13, NULL, '127.0.0.1', 'phinah', '2025-03-05 09:44:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (420, 13, NULL, '127.0.0.1', 'phinah', '2025-03-05 15:09:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (421, 13, NULL, '127.0.0.1', 'phinah', '2025-03-06 08:18:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (422, 13, NULL, '127.0.0.1', 'phinah', '2025-03-06 20:05:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (423, 13, NULL, '127.0.0.1', 'phinah', '2025-03-07 16:21:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (424, 13, NULL, '127.0.0.1', 'phinah', '2025-03-11 09:33:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (425, 13, NULL, '127.0.0.1', 'phinah', '2025-03-11 15:40:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (426, 13, NULL, '127.0.0.1', 'phinah', '2025-03-12 12:02:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (427, 13, NULL, '127.0.0.1', 'phinah', '2025-03-13 09:24:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (428, 13, NULL, '127.0.0.1', 'phinah', '2025-03-14 11:18:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (429, 13, NULL, '127.0.0.1', 'phinah', '2025-03-17 10:05:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (430, 13, NULL, '127.0.0.1', 'phinah', '2025-03-18 10:01:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (431, 13, NULL, '127.0.0.1', 'phinah', '2025-03-19 08:10:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (432, 13, NULL, '127.0.0.1', 'phinah', '2025-03-19 15:50:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (433, 13, NULL, '127.0.0.1', 'phinah', '2025-03-20 14:19:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (434, 13, NULL, '127.0.0.1', 'phinah', '2025-03-21 15:41:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (435, 13, NULL, '127.0.0.1', 'phinah', '2025-03-23 20:19:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (436, 13, NULL, '127.0.0.1', 'phinah', '2025-03-26 12:14:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (437, 13, NULL, '127.0.0.1', 'phinah', '2025-03-27 08:49:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (438, 13, NULL, '127.0.0.1', 'phinah', '2025-03-27 20:45:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (439, 13, NULL, '127.0.0.1', 'phinah', '2025-03-29 08:35:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (440, 13, NULL, '127.0.0.1', 'phinah', '2025-03-31 10:24:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (441, 13, NULL, '127.0.0.1', 'phinah', '2025-04-01 08:21:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (442, 13, NULL, '127.0.0.1', 'phinah', '2025-04-01 20:32:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (443, 13, NULL, '127.0.0.1', 'phinah', '2025-04-03 09:57:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (444, 13, NULL, '127.0.0.1', 'phinah', '2025-04-04 08:54:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (445, 13, NULL, '154.159.32.214', 'phinah', '2025-04-04 13:41:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (446, 3, NULL, '154.159.32.214', 'kimems01@gmail.com', '2025-04-04 14:36:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (447, 3, NULL, '154.159.32.214', 'kimems01@gmail.com', '2025-04-04 14:57:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (448, 14, NULL, '154.159.32.214', 'sagana001', '2025-04-04 15:05:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (449, 3, NULL, '154.159.32.214', 'kimems01@gmail.com', '2025-04-04 17:33:52');


#
# TABLE STRUCTURE FOR: sma_users
#

DROP TABLE IF EXISTS `sma_users`;

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

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, '154.159.32.214', '127.0.0.1', 'kimems', 'a4986cd5bc599e2709247e58c8dd012f7df8d566', NULL, 'kimems01@gmail.com', NULL, 'da083f5540aaaada647138c5ee1284dcff4933e7', 1664357808, '9546b1318c4a627e0692f1c137311470e9dcf45d', 1637098347, 1743777232, 1, 'James', 'Kimemia', 'Livecode Solutions LTD', '254723759494', 'a557d510090c1cd90048dde610fc6ca6.png', '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 (13, '154.159.32.214', '::1', 'phinah', '63e2b593f5410e3f9867735b2ef43d46a469cfd0', NULL, 'saraphinanyambura342@gmail.com', NULL, NULL, NULL, '708a7604eaacaf99a53c9a30d71b9b719e80e528', 1734696261, 1743763265, 1, 'saraphinah', 'nyambura', 'Sagana PlantRaisers', '0768403740', NULL, 'female', 1, 1, 3, NULL, 0, 0, 0, 1, 1, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (14, '154.159.32.214', '154.159.32.214', 'sagana001', 'c070d781808e47ef129fc913ff438be07e406f52', NULL, 'artpac.tech@gmail.com', NULL, NULL, NULL, '2de33504f419d2daaf790d123fcaa4b0cde3022a', 1743768252, 1743768332, 1, 'munene', 'mwangi', 'saganaplantraisers', '0710841004', NULL, 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 0, 0);


#
# TABLE STRUCTURE FOR: sma_variants
#

DROP TABLE IF EXISTS `sma_variants`;

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

INSERT INTO `sma_variants` (`id`, `name`) VALUES (4, 'RED');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (5, 'MAROON');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (6, 'GREEN');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (7, 'BEIGE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (8, 'MIXED GREY');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (9, 'R/BLUE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (10, 'N/BLUE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (11, 'BLACK');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (12, 'AZURE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (13, 'BROWN');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (15, 'NDENGU');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (16, 'white');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (17, 'ASH GREY');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (18, 'NAVY DARK');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (19, 'NAVY LIGHT');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (20, 'PURPLE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (21, 'WINE   RED');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (22, 'CHOCOLATE BROWN');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (23, 'NDENGU STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (24, 'PURPLE STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (25, 'NAVY BLUE STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (26, 'MAROON STRIPED');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (27, 'MIXED GREY STRIPED');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (28, 'GREY RED STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (29, 'GREEN  WHITE STRIPED');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (30, 'ROYAL BLUE  STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (31, 'ROYAL BLUE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (32, 'RED STRIPE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (33, 'NAVY STRIPED T BLUE');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (34, 'NAVY SKY');
INSERT INTO `sma_variants` (`id`, `name`) VALUES (35, 'KK BLUE');


#
# TABLE STRUCTURE FOR: sma_warehouses
#

DROP TABLE IF EXISTS `sma_warehouses`;

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

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, 'SP', 'Sagana Plantraisers', '<p>Karatina</p>', NULL, '0721536097', 'info@saganaplanters.com', 1);


#
# TABLE STRUCTURE FOR: sma_warehouses_products
#

DROP TABLE IF EXISTS `sma_warehouses_products`;

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

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6, 2, 1, '0.0000', NULL, '130.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7, 1, 1, '0.0000', NULL, '243.3333');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8, 3, 1, '0.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (72, 22, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (73, 26, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (74, 31, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (75, 33, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (76, 29, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (77, 30, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (78, 28, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (79, 62, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (80, 63, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (81, 53, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (82, 54, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (83, 56, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (84, 55, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (85, 57, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (86, 50, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (87, 51, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (88, 52, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (89, 47, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (90, 46, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (91, 48, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (92, 49, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (93, 42, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (94, 32, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (95, 34, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (96, 36, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (97, 39, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (98, 41, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (99, 23, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (100, 25, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (101, 24, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (102, 27, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (103, 35, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (104, 37, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (105, 40, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (152, 112, 1, '0.0000', NULL, '-34579.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (153, 111, 1, '0.0000', NULL, '1200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (154, 106, 1, '0.0000', NULL, '366998.5440');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (155, 105, 1, '0.0000', NULL, '1200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (156, 79, 1, '87.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (157, 99, 1, '7.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (158, 81, 1, '80.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (159, 75, 1, '105.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (160, 67, 1, '74.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (161, 71, 1, '133.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (162, 85, 1, '299.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (163, 83, 1, '62.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (164, 107, 1, '1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (165, 108, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (166, 69, 1, '147.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (167, 74, 1, '90.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (168, 68, 1, '16.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (169, 70, 1, '47.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (170, 72, 1, '36.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (171, 73, 1, '66.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (172, 76, 1, '46.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (173, 78, 1, '20.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (174, 90, 1, '19.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (175, 77, 1, '91.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (176, 80, 1, '56.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (177, 82, 1, '31.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (178, 84, 1, '32.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (179, 89, 1, '47.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (180, 104, 1, '3.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (181, 86, 1, '30.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (182, 101, 1, '3.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (183, 102, 1, '6.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (184, 87, 1, '11.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (185, 94, 1, '1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (186, 95, 1, '9.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (187, 98, 1, '7.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (203, 976, 1, '-1685.0676', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (209, 982, 1, '-18.5000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (224, 997, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (239, 1012, 1, '20.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (244, 1017, 1, '277.9250', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (259, 1031, 1, '-12.2000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (266, 1038, 1, '125.2002', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (272, 1044, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (278, 1047, 1, '-30.7500', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (288, 1057, 1, '8.6250', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (305, 1072, 1, '83.9605', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (328, 1036, 1, '-25.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (330, 1094, 1, '285.4910', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (333, 1097, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (334, 1098, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (335, 1099, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (336, 1100, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (337, 1101, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (338, 1102, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (339, 1103, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (340, 1104, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (341, 1105, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (342, 1106, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (343, 1107, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (344, 1108, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (345, 1092, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (346, 967, 1, '99.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (347, 1046, 1, '297.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (348, 1050, 1, '84.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (349, 1089, 1, '5.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (350, 965, 1, '304.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (351, 1109, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (352, 1110, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (353, 961, 1, '58.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (354, 1111, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (355, 1112, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (356, 1113, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (357, 1114, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (358, 1115, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (359, 1116, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (360, 1117, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (361, 1118, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (362, 1119, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (363, 1120, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (364, 1121, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (365, 1122, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (366, 1123, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (367, 1124, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (368, 1125, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (369, 1126, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (370, 1127, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (371, 1128, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (372, 1129, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (373, 1130, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (374, 1131, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (375, 1132, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (376, 1133, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (377, 1134, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (378, 1135, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (379, 1136, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (380, 1137, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (381, 1138, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (382, 1139, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (383, 1140, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (384, 1141, 1, '12.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (385, 1142, 1, '12.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (386, 1143, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (387, 1144, 1, '-12.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (388, 1145, 1, '0.0000', NULL, '0.0000');


#
# TABLE STRUCTURE FOR: sma_warehouses_products_variants
#

DROP TABLE IF EXISTS `sma_warehouses_products_variants`;

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

INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (3, 1, 1, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (403, 272, 31, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (404, 93, 30, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (405, 385, 22, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (406, 221, 28, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (407, 544, 62, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (408, 396, 22, 1, '0.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (970, 736, 79, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (971, 980, 99, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (972, 763, 81, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (973, 682, 75, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (974, 577, 67, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (975, 630, 71, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (976, 822, 85, 1, '25.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (977, 737, 79, 1, '13.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (978, 791, 83, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (979, 1065, 107, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (980, 580, 67, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (981, 607, 69, 1, '15.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (982, 576, 67, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (983, 609, 69, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (984, 677, 74, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (985, 773, 81, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (986, 817, 85, 1, '31.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (987, 635, 71, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (988, 689, 75, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (989, 595, 68, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (990, 622, 70, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (991, 647, 72, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (992, 659, 73, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (993, 703, 76, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (994, 730, 78, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (995, 638, 71, 1, '20.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (996, 698, 75, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (997, 628, 70, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (998, 654, 72, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (999, 709, 76, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1000, 818, 85, 1, '104.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1001, 892, 90, 1, '17.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1002, 604, 69, 1, '29.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1003, 666, 74, 1, '26.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1004, 669, 74, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1005, 687, 75, 1, '24.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1006, 720, 77, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1007, 824, 85, 1, '27.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1008, 739, 79, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1009, 623, 70, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1010, 658, 73, 1, '17.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1011, 757, 80, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1012, 614, 69, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1013, 749, 79, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1014, 792, 83, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1015, 821, 85, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1016, 629, 71, 1, '17.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1017, 676, 74, 1, '-3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1018, 716, 77, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1019, 710, 77, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1020, 820, 85, 1, '31.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1021, 711, 77, 1, '22.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1022, 650, 72, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1023, 624, 70, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1024, 660, 73, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1025, 758, 80, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1026, 759, 80, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1027, 787, 82, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1028, 815, 84, 1, '-4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1029, 616, 69, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1030, 633, 71, 1, '22.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1031, 693, 75, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1032, 880, 89, 1, '20.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1033, 596, 68, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1034, 1041, 104, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1035, 644, 71, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1036, 603, 69, 1, '15.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1037, 683, 75, 1, '31.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1038, 741, 79, 1, '20.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1039, 681, 74, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1040, 802, 83, 1, '-4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1041, 774, 81, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1042, 632, 71, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1043, 586, 67, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1044, 612, 69, 1, '13.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1045, 640, 71, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1046, 675, 74, 1, '15.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1047, 699, 75, 1, '11.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1048, 613, 69, 1, '17.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1049, 766, 81, 1, '19.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1050, 793, 83, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1051, 713, 77, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1052, 1145, 67, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1053, 1144, 69, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1054, 1143, 74, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1055, 649, 72, 1, '23.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1056, 810, 84, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1057, 819, 85, 1, '16.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1058, 830, 85, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1059, 831, 85, 1, '42.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1060, 825, 85, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1061, 828, 85, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1062, 832, 86, 1, '30.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1063, 990, 101, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1064, 1007, 102, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1065, 1044, 104, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1066, 1008, 102, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1067, 788, 82, 1, '14.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1068, 835, 87, 1, '11.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1069, 940, 94, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1070, 950, 95, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1071, 1128, 98, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1072, 869, 89, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1073, 895, 90, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1074, 879, 89, 1, '20.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1075, 719, 77, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1076, 746, 79, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1077, 620, 70, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1078, 648, 72, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1079, 618, 69, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1080, 661, 73, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1081, 708, 76, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1082, 611, 69, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1083, 637, 71, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1084, 597, 68, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1085, 619, 70, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1086, 655, 73, 1, '23.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1087, 700, 76, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1088, 753, 80, 1, '28.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1089, 780, 82, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1090, 807, 84, 1, '22.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1091, 600, 68, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1092, 626, 70, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1093, 651, 72, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1094, 662, 73, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1095, 707, 76, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1096, 733, 78, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1097, 679, 74, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1098, 695, 75, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1099, 785, 82, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1100, 606, 69, 1, '18.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1101, 667, 74, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1102, 685, 75, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1103, 712, 77, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1104, 1060, 73, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1105, 1061, 76, 1, '1.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1106, 627, 70, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1107, 653, 72, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1108, 663, 73, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1109, 705, 76, 1, '13.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1110, 734, 78, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1111, 761, 80, 1, '15.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1112, 813, 84, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1113, 704, 76, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1114, 731, 78, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1115, 602, 68, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1116, 762, 80, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1117, 789, 82, 1, '4.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1118, 816, 84, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1119, 588, 67, 1, '11.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1120, 721, 77, 1, '5.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1121, 587, 67, 1, '16.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1122, 694, 75, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1123, 747, 79, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1124, 801, 83, 1, '11.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1125, 592, 67, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1126, 617, 69, 1, '2.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1127, 725, 77, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1128, 752, 79, 1, '13.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1129, 779, 81, 1, '15.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1130, 806, 83, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1131, 578, 67, 1, '6.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1132, 605, 69, 1, '12.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1133, 631, 71, 1, '7.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1134, 668, 74, 1, '8.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1135, 764, 81, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1136, 583, 67, 1, '9.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1137, 665, 74, 1, '3.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1138, 765, 81, 1, '10.0000', NULL);
INSERT INTO `sma_warehouses_products_variants` (`id`, `option_id`, `product_id`, `warehouse_id`, `quantity`, `rack`) VALUES (1139, 790, 83, 1, '14.0000', NULL);


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

